- Added fix for proper restoration of all mutter related keybinds

This commit is contained in:
Ben Reaves
2020-05-07 13:10:37 -05:00
parent 099b3cea88
commit 8e6f1962e0
2 changed files with 2 additions and 2 deletions

View File

@@ -218,7 +218,7 @@ def Uninstall():
if dename == "gnome":
print("Restoring DE hotkeys...")
wmkeys = cmdline('ls | grep -m1 "keybinding"')
mutterkeys = cmdline('ls | grep -m1 "mutter"')
mutterkeys = cmdline('ls | grep -m1 "mutter_"')
if len(wmkeys) > 0:
print('dconf load /org/gnome/desktop/wm/keybindings/ < ' + wmkeys)
cmdline('dconf load /org/gnome/desktop/wm/keybindings/ < ' + wmkeys)