Skip to content

Commit

Permalink
Libreoffice MS theme: ensure libreoffice-gtk3 is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
Botspot committed Aug 23, 2023
1 parent eb9fade commit bc178c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/Libreoffice MS theme/install
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ if ! command -v libreoffice >/dev/null ;then
error "User error: Libreoffice is not installed, so this theme is useless to you.\nTo install libreoffice, run this in a terminal:\nsudo apt install libreoffice libreoffice-gtk2"
fi

#Ensure libreoffice-gtk3 is installed. It is installed by default on PiOS, but reinstaling libreoffice will not bring it back, resulting in a Win95 interface and no tabbed theme.
install_packages libreoffice-gtk3 || exit 1

rm -rf ~/libreoffice-ms-theme
git_clone --depth=1 https://github.com/Botspot/libreoffice-ms-theme || error "Failed to git_clone libreoffice-ms-theme repository!"
~/libreoffice-ms-theme/apply.sh || error "apply.sh failed"
Expand Down
3 changes: 3 additions & 0 deletions apps/Libreoffice MS theme/uninstall
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/bash

purge_packages || exit 1

rm -rf ~/libreoffice-ms-theme
git_clone --depth=1 https://github.com/Botspot/libreoffice-ms-theme || error "Failed to git_clone libreoffice-ms-theme repository!"
~/libreoffice-ms-theme/revert.sh || error "revert.sh failed"
Expand Down

0 comments on commit bc178c1

Please sign in to comment.