From e15f193cac24baf72adf92460c23d50b07d9e94a Mon Sep 17 00:00:00 2001 From: Christian Schendel Date: Sun, 7 Dec 2025 10:37:11 +0000 Subject: [PATCH] [bug] remove more hardcoded paths --- common/night-theme-switcher.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/common/night-theme-switcher.in b/common/night-theme-switcher.in index efc6c0c..6b73c7c 100755 --- a/common/night-theme-switcher.in +++ b/common/night-theme-switcher.in @@ -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 }