Add Solus OS support

This commit is contained in:
Muhammad Rivan 2021-06-25 13:41:42 +07:00
parent 4b69d5f2e9
commit 0fd58cd15c
No known key found for this signature in database
GPG key ID: E72DFBD12B671F58

View file

@ -176,6 +176,9 @@ install_theme_deps() {
# 'libxml2' is already included here, and it's gonna broke the installation
# if you add it
prepare_xbps && sudo xbps-install -Sy sassc glib-devel
elif has_command eopkg; then
# Rolling release
sudo eopkg upgrade; sudo eopkg install sassc glib2 libxml2
else
installation_sorry
fi
@ -204,6 +207,9 @@ install_beggy_deps() {
elif has_command xbps-install; then
# Rolling release
prepare_xbps && sudo xbps-install -Sy ImageMagick
elif has_command eopkg; then
# Rolling release
sudo eopkg upgrade; sudo eopkg install imagemagick
else
installation_sorry
fi
@ -234,6 +240,9 @@ install_dialog_deps() {
elif has_command xbps-install; then
# Rolling release
prepare_xbps && sudo xbps-install -Sy dialog
elif has_command eopkg; then
# Rolling release
sudo eopkg upgrade; sudo eopkg install dialog
else
installation_sorry
fi