Skip to content

Commit 81893dc

Browse files
committed
🐛 fix: fix(xfce): use bigicons-papient-light for XFCE light theme
Change icon-theme from bigicons-papient to bigicons-papient-light in _apply_light_theme for XFCE, both in settings file and xfconf-query command.
1 parent 427f8c8 commit 81893dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)