-
-
Notifications
You must be signed in to change notification settings - Fork 31
HowTo: Add or change i3 Keybindings
Ken Gilmer edited this page Dec 28, 2019
·
2 revisions
- Consult the i3 User's Guide to find out which feature you'd like to add or change.
-
Stage your own i3 config file, then open
~/.config/regolith/i3/config
in your editor of choice. - The lines which start with
bindsym
map keys to actions.$mod
means the modifier key, which by default is⊞ Win
. For examplebindsym $mod+Return exec /usr/bin/st
will cause i3 to run/usr/bin/st
when⊞ Win
andReturn
are pressed at the same time. - Update an existing line or add a new one based on your needs. For example, to cause i3 to use tabbed layout mode, when
⊞ Win
andt
are pressed, add this to the config file:bindsym $mod+t workspace_layout tabbed
- After making the change, save the file and reload i3 with
⊞ Win
+Shift
+r
.
Since most of this wiki content was created, a new site for Regolith was created. This wiki content was written for Regolith 1.2 but most of it still applies to 1.3. However, it is suggested to first check if the information you are looking for is here.