I am using Manjaro with i3 desktop on Virtualbox and I can't seem to figure out what the mod key is (I'm using a standard English keyboard).
I've done the expected finger mashing and have tried several different combinations to no avail.
I know the key to release from the Host is the Right-Cntrl key.
I've read that the Windows (Super) key can be the mod key but this has not seemed to be successful for me. For instance, I've been trying to do
Super+Enter
to open a terminal.
mod
is just short formodifier
. Ctrl, Alt, Hyper, and Super are all different modifier keys (the Win key is usually treated as Super, and Hyper is unassigned, or vice versa). does youri3
config file (probably/home/username/.config/i3/config
) start with "set $mod [something]
"? that [something] is the defined mod key. post details of your config file if you still need help. – quixotic Mar 31 '17 at 18:37mod
key (like opening a terminal)... – zachaz35 Mar 31 '17 at 18:52mod
to alt key in youri3
configuration file. It should be located at$HOME/.config/i3/config
. Open it with an editor of your choice and make a necessary edits (i.e.nano $HOME/.config/i3/config
). – ddnomad Mar 31 '17 at 18:59mod+enter
) but that's the issue at hand. In the bottom right I can click on the update manager, sound, network manager. – zachaz35 Mar 31 '17 at 19:04i3
works only with shortcuts and the majority of them (actually all of them) require a working $mod key.$mod+d
launchesdmenu
which is a minimalist text application launcher. Without working $mod key you won't get far. – ddnomad Mar 31 '17 at 19:07cntrl+alt+A
to open the action editor. Do you happen (or anyone else) to know of another way to open a terminal or file browser other than usingmod
? Or maybe I can edit something from Virtualbox's side? – zachaz35 Mar 31 '17 at 19:17bindsym
keywords. seeman i3
; default keybinds and a sample config file is shown usingMod1
(theAlt
key). (that's why my first comment asked what your config file defined$mod
to be -- the$
indicates that it's a variable.) – quixotic Apr 01 '17 at 03:50