File tree Expand file tree Collapse file tree
biglinux-livecd/usr/share/biglinux Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99# Application Information
1010APP_NAME = "BigLinux Calamares Config"
1111APP_ID = "com.biglinux.calamares-config"
12- APP_VERSION = "1.0.3 "
12+ APP_VERSION = "1.0.4 "
1313
1414# Paths and Directories
1515BASE_DIR = Path (__file__ ).parent .parent .parent
Original file line number Diff line number Diff line change @@ -242,8 +242,10 @@ def _apply_dark_theme(self, desktop_env: str):
242242 elif desktop_env == "XFCE" :
243243 logger .info ("Setting XFCE themes to dark mode" )
244244 self ._modify_settings_file (settings_file , {
245- "xsettings" : {
246- "Net/ThemeName" : "'adw-gtk3-dark'"
245+ "org/gnome/desktop/interface" : {
246+ "color-scheme" : "'prefer-dark'" ,
247+ "gtk-theme" : "'adw-gtk3-dark'" ,
248+ "icon-theme" : "'bigicons-papient-dark'"
247249 }
248250 })
249251
@@ -295,8 +297,10 @@ def _apply_light_theme(self, desktop_env: str):
295297 elif desktop_env == "XFCE" :
296298 logger .info ("Setting XFCE themes to light mode" )
297299 self ._modify_settings_file (settings_file , {
298- "xsettings" : {
299- "Net/ThemeName" : "'adw-gtk3'"
300+ "org/gnome/desktop/interface" : {
301+ "color-scheme" : "'default'" ,
302+ "gtk-theme" : "'adw-gtk3'" ,
303+ "icon-theme" : "'bigicons-papient'"
300304 }
301305 })
302306
You can’t perform that action at this time.
0 commit comments