Skip to content

Commit a45b7b4

Browse files
committed
🐛 fix: Correction for theme in XFCE in the language pack
1 parent 5f61568 commit a45b7b4

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

biglinux-livecd/usr/share/biglinux/calamares/src/utils/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Application Information
1010
APP_NAME = "BigLinux Calamares Config"
1111
APP_ID = "com.biglinux.calamares-config"
12-
APP_VERSION = "1.0.3"
12+
APP_VERSION = "1.0.4"
1313

1414
# Paths and Directories
1515
BASE_DIR = Path(__file__).parent.parent.parent

biglinux-livecd/usr/share/biglinux/livecd/services.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)