OnlyOffice: use snap package instead of the .deb one from the website

This commit is contained in:
Mylloon 2022-01-05 19:33:32 +01:00
parent 2a03a4512f
commit dfe9fa4635
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
4 changed files with 3 additions and 15 deletions

View file

@ -119,7 +119,7 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
- Installe OnlyOffice
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installOnlyOffice.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
sudo snap install onlyoffice-desktopeditors
```
- Installe le [sélecteur d'emojis](https://github.com/GaZaTu/x11-emoji-picker)

View file

@ -73,7 +73,8 @@ then
bash installParsec.sh
# Install OnlyOffice
bash installOnlyOffice.sh
sudo snap install onlyoffice-desktopeditors
echo -e "\nOnlyOffice installed! 🎉"
# Install EmojiPicker and its keyboard shortcut
wget -q --show-progress https://raw.githubusercontent.com/GaZaTu/x11-emoji-picker/master/install.sh -O tmp.sh && bash tmp.sh; rm tmp.sh

View file

@ -1,10 +0,0 @@
# Download package
wget -q --show-progress https://download.onlyoffice.com/install/desktop/editors/linux/onlyoffice-desktopeditors_amd64.deb -O onlyoffice.deb
# Installing OnlyOffice
sudo apt install ./onlyoffice.deb -y
# Removing package
rm onlyoffice.deb
echo -e "\nOnlyOffice installed or updated! 🎉"

View file

@ -11,9 +11,6 @@ then
# Update Obsidian
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installObsidian.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
# Update OnlyOffice
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installOnlyOffice.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
# Update Parsec
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installParsec.sh -O tmp.sh && bash tmp.sh; rm tmp.sh