Untitled
unknown
plain_text
a year ago
2.0 kB
4
Indexable
# Start i3-gaps exec i3 # Set mod key (Mod1 = Alt, Mod4 = Super) set $mod Mod1 # Font for window titles font pango:DejaVu Sans Mono 10 # Use Mouse+$mod to drag floating windows to their wanted position floating_modifier $mod # Start a terminal bindsym $mod+Return exec i3-sensible-terminal # Kill focused window bindsym $mod+Shift+q kill # Start dmenu (or rofi) bindsym $mod+d exec dmenu_run # Change focus bindsym $mod+j focus left bindsym $mod+k focus down bindsym $mod+l focus up bindsym $mod+semicolon focus right # Move focused window bindsym $mod+Shift+j move left bindsym $mod+Shift+k move down bindsym $mod+Shift+l move up bindsym $mod+Shift+semicolon move right # Split in horizontal orientation bindsym $mod+h split h # Split in vertical orientation bindsym $mod+v split v # Fullscreen mode toggle bindsym $mod+f fullscreen toggle # Change container layout (stacked, tabbed, default) bindsym $mod+s layout stacking bindsym $mod+w layout tabbed bindsym $mod+e layout toggle split # Gaps: setting inner and outer gaps gaps inner 10 gaps outer 20 # Restart i3 inplace (preserves your layout/session, can be used to reload the configuration file) bindsym $mod+Shift+c restart # Exit i3 (logs you out of your X session) bindsym $mod+Shift+e exit # Workspace names set $ws1 "1" set $ws2 "2" set $ws3 "3" set $ws4 "4" set $ws5 "5" # Switch to workspace bindsym $mod+1 workspace $ws1 bindsym $mod+2 workspace $ws2 bindsym $mod+3 workspace $ws3 bindsym $mod+4 workspace $ws4 bindsym $mod+5 workspace $ws5 # Move focused window to workspace bindsym $mod+Shift+1 move container to workspace $ws1 bindsym $mod+Shift+2 move container to workspace $ws2 bindsym $mod+Shift+3 move container to workspace $ws3 bindsym $mod+Shift+4 move container to workspace $ws4 bindsym $mod+Shift+5 move container to workspace $ws5 # Reload the configuration file bindsym $mod+Shift+r reload
Editor is loading...
Leave a Comment