diff --git a/install.sh b/install.sh index 976f4a39..32e26219 100755 --- a/install.sh +++ b/install.sh @@ -148,9 +148,15 @@ else if (is_my_distro "arch" || is_my_distro "void") && has_command xfce4-session; then msg="XFCE: you may need to logout after changing your theme to fix your panel opacity." - notif_msg="${msg}\n\n${final_msg}" + elif (is_my_distro "solus") && has_command gnome-shell; then + msg="GNOME: you may need to disable 'User Themes' extension to fix your dock." + elif (is_my_distro "debian") && [[ "${GNOME_VERSION}" == "old" ]]; then + msg="GNOME: you may need to disable 'User Themes' extension to fix your logout and authentication dialog." + fi + if [[ "${msg}" ]]; then echo; prompt -w "${msg}" + notif_msg="${msg}\n\n${final_msg}" else notif_msg="${final_msg}" fi diff --git a/lib-install.sh b/lib-install.sh index db2c2b2b..0e639bda 100755 --- a/lib-install.sh +++ b/lib-install.sh @@ -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 -y upgrade; sudo eopkg -y 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 -y upgrade; sudo eopkg -y 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 -y upgrade; sudo eopkg -y install dialog else installation_sorry fi