Hi, I’m Erika Rowland (a.k.a. erikareads). Hi, I’m Erika. I’m an Ops-shaped Software Engineer, Toolmaker, and Resilience Engineering fan. I like Elixir and Gleam, Reading, and Design. She/Her. Constellation Webring Published on

i3 Window Manager Space Mode

When I tried Spacemacs, the one thing I really liked was the “leader” key setup they had around the spacebar.

i3 window manager supports arbitrary modes, which can have their own keybinds. This is how I currently have a small “space-mode” setup in my i3 configThe $reset is vital here, otherwise you’ll be stuck in “space-mode” forever.

set $reset mode "default"

bindsym $mod+space mode "space-mode"

mode "space-mode" {
    bindsym space exec --no-startup-id dmenu_run; $reset
    bindsym $mod+space exec --no-startup-id dmenu_run; $reset
    bindsym Escape $reset
    bindym Return exec alacritty; $reset
}

Constellation Webring