11 lines
564 B
Bash
11 lines
564 B
Bash
#!/bin/bash
|
|
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
|
|
|
|
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"
|
|
rm -rf ~/libreoffice-ms-theme
|
|
echo "Libreoffice should now have a new look and feel. Try it out! :)"
|