Add swap keybinds

This commit is contained in:
2023-05-14 00:27:44 +09:00
parent 46d1296d2a
commit 91d9741744
4 changed files with 82 additions and 24 deletions

View File

@@ -59,7 +59,12 @@ function fillPreferencesWindow(window) {
keybinds.add(focusBindings);
focusBindings.add(_createKeybind(settings, "cycle-next"));
focusBindings.add(_createKeybind(settings, "cycle-prev"));
focusBindings.add(_createKeybind(settings, "zoom"));
const swapBindings = new Adw.PreferencesGroup();
keybinds.add(swapBindings);
swapBindings.add(_createKeybind(settings, "swap-next"));
swapBindings.add(_createKeybind(settings, "swap-prev"));
swapBindings.add(_createKeybind(settings, "zoom"));
const tileBindings = new Adw.PreferencesGroup();
keybinds.add(tileBindings);