From f6062ef8e4187c5cf215040b7ed3d64ad5dad17a Mon Sep 17 00:00:00 2001 From: developomp Date: Mon, 18 Oct 2021 20:15:54 +0900 Subject: [PATCH] wps office -> onlyoffice --- setup.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/setup.sh b/setup.sh index 15f47c0..1c36cc0 100755 --- a/setup.sh +++ b/setup.sh @@ -619,10 +619,9 @@ setup_wireshark() { POST_INSTALL+=("wireshark: reboot") } -setup_wps_office() { - package_install \ - wps-office `# MS office but free` \ - ttf-wps-fonts `# WPS office fonts` \ +setup_onlyoffice() { + package_install \ + onlyoffice-bin `# MS office but free` \ } @@ -769,7 +768,7 @@ options=( "vscode" "" off "wine" "" off "wireshark" "" off - "wps_office" "" off + "onlyoffice" "" off "zoom" "" off "zsh" "" off ) @@ -819,7 +818,7 @@ for choice in $choices; do "vscode") setup_vscode;; "wine") setup_wine;; "wireshark") setup_wireshark;; - "wps_office") setup_wps_office;; + "onlyoffice") setup_onlyoffice;; "zoom") setup_zoom;; "zsh") setup_zsh;; esac