Skip to content

Commit

Permalink
Improved code for budgie and gnome themeing and fixed bugs in install…
Browse files Browse the repository at this point in the history
…er 'permission denied'
  • Loading branch information
imhemish committed May 3, 2021
1 parent be36297 commit 4bfbf28
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion desktop_linux_themer/desktop_linux_themer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
if event in [sg.WIN_CLOSED, "Exit"]:
break
elif event == "Set GTK+ Theme":
themerobj.changeGtkTheme(values["gtk"])
themerobj.changeGtkTheme(values["gtk"])
if themerobj.memCurrentSession in themerobj.GNOMEsessions or themerobj.memCurrentSession in themerobj.BudgieSessions:
themerobj.changeWMtheme(values["gtk"]) # because budgie and gnome dont care about window manager theme
elif event == "Set WM Theme":
themerobj.changeWMtheme(values["WM"])
elif event == "Set Desktop Theme":
Expand Down

0 comments on commit 4bfbf28

Please sign in to comment.