From 3af5eb286d47275236f27887a4c9de0d7a11ddc2 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 12 Jul 2020 00:45:24 -0500 Subject: [PATCH] - Added proper shortcut re-apply fix for mate and budgie --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a7bc98e..b91d615 100755 --- a/setup.py +++ b/setup.py @@ -258,7 +258,7 @@ def setShortcuts(): print('distro: ' + distro + ' de: ' + dename) print(bcolors.CRED2 + "A supported OS and DE was not found, you may not have full system level shortcuts installed." + bcolors.ENDC) print(bcolors.CRED2 + "You may want to find your DE or Window Manager settings and manually set Alt-Tab & other OS related shortcuts." + bcolors.ENDC) - if dename == "gnome": + if dename == "gnome" or dename == "mate" or dename == "budgie": # Apply dconf update to make updates survive reboots cmdline('dconf dump /org/gnome/desktop/wm/keybindings/ > tempkb.conf') cmdline('dconf dump /org/gnome/mutter/keybindings/ > tempmt.conf')