[bug] remove more hardcoded paths

This commit is contained in:
Christian Schendel 2025-12-07 10:37:11 +00:00
parent 20cfec138f
commit e15f193cac
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3

View file

@ -211,18 +211,18 @@ restore-theme-on-login() {
if [[ ! $gtk_color_scheme == ''\''prefer-dark'\''' ]]; then
gtk_color_scheme=default
gtk_prefer_dark_theme=false
gtk_theme=adw-gtk3
icon_theme=Papirus
gtk_theme=$gtk_theme_light
icon_theme=$icon_theme_light
qt_custom_palette=true
qt_color_scheme_path=/usr/share/color-schemes/BreezeLight.colors
qt_color_scheme_path=$kcolorscheme_light
_set_theme
else
gtk_color_scheme=prefer-dark
gtk_prefer_dark_theme=true
gtk_theme=adw-gtk3-dark
icon_theme=Papirus-Dark
gtk_theme=$gtk_theme_dark
icon_theme=$icon_theme_dark
qt_custom_palette=true
qt_color_scheme_path=/usr/share/color-schemes/BreezeDark.colors
qt_color_scheme_path=$kcolorscheme_dark
_set_theme
fi
}