-1

I want to add a custom shortcut to i3 desktop in linux.The manual says you should use bind [Modifiers+]keycode command.
Commands with just one keycode(gotten from xev) work fine but I don't know how to use multiple keycodes(e.g for $mod+alt+up).Also there is no modifier for Alt key that I can use in conjunction with bindsym.
Best regards

4

1 回答 1

1

The Alt key is specified by the Mod1 identifier. Therefore you can do: Super + Alt + q by

$mod+Mod1+q

where $mod is defined earlier in the config as Mod4 or

Mod4+Mod1+q
于 2019-12-28T09:06:22.897 回答