keybinds: remove NoMod

This commit is contained in:
end-4 2024-03-06 00:03:21 +07:00
parent 12baf108be
commit 5d28f309a5
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,6 @@
const { Gdk } = imports.gi;
const MODS = {
'NoMod': Gdk.ModifierType.NO_MODIFIER_MASK,
'Shift': Gdk.ModifierType.SHIFT_MASK,
'Ctrl': Gdk.ModifierType.CONTROL_MASK,
'Alt': Gdk.ModifierType.ALT_MASK,

View file

@ -60,7 +60,7 @@ let userConfigOptions = {
},
'keybinds': {
// Format: Mod1+Mod2+key. CaSe SeNsItIvE!
// Modifiers: Shift Ctrl Alt Hyper Meta NoMod
// Modifiers: Shift Ctrl Alt Hyper Meta
// See https://docs.gtk.org/gdk3/index.html#constants for the other keys (they are listed as KEY_key)
'overview': {
'altMoveLeft': 'Ctrl+b',