Skip to content

Commit 022c4fc

Browse files
committed
🐛 fix: fix(xfce): use bigicons-papient-light icon theme for XFCE light mode
1 parent f45a39a commit 022c4fc

2 files changed

Lines changed: 3 additions & 3 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.1.3"
12+
APP_VERSION = "1.1.4"
1313

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,12 +312,12 @@ def _apply_light_theme(self, desktop_env: str):
312312
"org/gnome/desktop/interface": {
313313
"color-scheme": "'default'",
314314
"gtk-theme": "'adw-gtk3'",
315-
"icon-theme": "'bigicons-papient'"
315+
"icon-theme": "'bigicons-papient-light'"
316316
}
317317
})
318318
# Apply theme immediately via xfconf-query
319319
self._run_command(["xfconf-query", "-c", "xsettings", "-p", "/Net/ThemeName", "-s", "adw-gtk3"])
320-
self._run_command(["xfconf-query", "-c", "xsettings", "-p", "/Net/IconThemeName", "-s", "bigicons-papient"])
320+
self._run_command(["xfconf-query", "-c", "xsettings", "-p", "/Net/IconThemeName", "-s", "bigicons-papient-light"])
321321

322322
# Configure Kvantum theme
323323
kvantum_dir = os.path.join(home, ".config", "Kvantum")

0 commit comments

Comments
 (0)