e6c5065b5b
Super shared KBDs between i3wm and Emacs for: - focusing windows (i.e. M-{h,j,k,l}) - deleting windows (i.e. M-q) More support may be needed, but this is good DWIM behavior for now.
142 lines
4.3 KiB
Text
142 lines
4.3 KiB
Text
set $mod Mod1
|
|
|
|
# Font for window titles. Will also be used by the bar unless a different font
|
|
# is used in the bar {} block below.
|
|
font pango:monospace 8
|
|
|
|
# Use Mouse+$mod to drag floating windows to their wanted position
|
|
floating_modifier $mod
|
|
|
|
# gaps
|
|
gaps inner 20
|
|
gaps outer 0
|
|
smart_gaps on
|
|
|
|
# audio controls
|
|
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5%
|
|
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5%
|
|
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle
|
|
|
|
# screen brightness controls
|
|
bindsym XF86MonBrightnessUp exec xbacklight -inc 20
|
|
bindsym XF86MonBrightnessDown exec xbacklight -dec 20
|
|
|
|
# ensure wallpaper
|
|
exec --no-startup-id feh --bg-scale ~/pictures/blurred.jpg
|
|
|
|
# start a terminal
|
|
bindsym $mod+Return exec terminator
|
|
|
|
# no title bars
|
|
for_window [class="^.*"] border pixel 0
|
|
|
|
# disable mouse hover focus
|
|
focus_follows_mouse no
|
|
|
|
# kill focused window
|
|
bindsym $mod+q exec ~/.config/i3/i3-navigate-emacs quit
|
|
|
|
# start dmenu (a program launcher)
|
|
bindsym Mod4+space exec --no-startup-id i3-dmenu-desktop --dmenu='rofi -i -dmenu -width 40 -lines 8'
|
|
|
|
# change focus
|
|
bindsym $mod+h exec ~/.config/i3/i3-navigate-emacs left
|
|
bindsym $mod+j exec ~/.config/i3/i3-navigate-emacs down
|
|
bindsym $mod+k exec ~/.config/i3/i3-navigate-emacs up
|
|
bindsym $mod+l exec ~/.config/i3/i3-navigate-emacs right
|
|
|
|
# move focused window
|
|
bindsym $mod+Shift+h move left
|
|
bindsym $mod+Shift+j move down
|
|
bindsym $mod+Shift+k move up
|
|
bindsym $mod+Shift+l move right
|
|
|
|
# split in vertical orientation
|
|
bindsym $mod+v split v
|
|
bindsym $mod+Shift+v split h
|
|
|
|
# enable duplicating the current window vertically or horizontally
|
|
# bindsym $mod+- split v exec terminator
|
|
# bindsym $mod+\ split h exec terminator
|
|
|
|
# enter fullscreen mode for the focused container
|
|
bindsym $mod+z fullscreen toggle
|
|
|
|
# change container layout (stacked, tabbed, toggle split)
|
|
bindsym $mod+s layout stacking
|
|
bindsym $mod+w layout tabbed
|
|
bindsym $mod+e layout toggle split
|
|
|
|
# toggle tiling / floating
|
|
bindsym $mod+Shift+space floating toggle
|
|
|
|
# change focus between tiling / floating windows
|
|
bindsym $mod+space focus mode_toggle
|
|
|
|
# focus the parent container
|
|
bindsym $mod+a focus parent
|
|
|
|
# Define names for default workspaces for which we configure key bindings later on.
|
|
# We use variables to avoid repeating the names in multiple places.
|
|
set $ws1 "1"
|
|
set $ws2 "2"
|
|
set $ws3 "3"
|
|
set $ws4 "4"
|
|
set $ws5 "5"
|
|
set $ws6 "6"
|
|
set $ws7 "7"
|
|
set $ws8 "8"
|
|
set $ws9 "9"
|
|
set $ws10 "10"
|
|
|
|
# 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
|
|
bindsym $mod+6 workspace $ws6
|
|
bindsym $mod+7 workspace $ws7
|
|
bindsym $mod+8 workspace $ws8
|
|
bindsym $mod+9 workspace $ws9
|
|
bindsym $mod+0 workspace $ws10
|
|
|
|
# move focused container 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
|
|
bindsym $mod+Shift+6 move container to workspace $ws6
|
|
bindsym $mod+Shift+7 move container to workspace $ws7
|
|
bindsym $mod+Shift+8 move container to workspace $ws8
|
|
bindsym $mod+Shift+9 move container to workspace $ws9
|
|
bindsym $mod+Shift+0 move container to workspace $ws10
|
|
|
|
# reload the configuration file
|
|
bindsym $mod+Shift+c reload
|
|
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
|
bindsym $mod+Shift+r restart
|
|
# exit i3 (logs you out of your X session)
|
|
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
|
|
|
|
# resize window (you can also use the mouse for that)
|
|
mode "resize" {
|
|
bindsym h resize shrink width 10 px or 10 ppt
|
|
bindsym j resize shrink height 10 px or 10 ppt
|
|
bindsym k resize grow height 10 px or 10 ppt
|
|
bindsym l resize grow width 10 px or 10 ppt
|
|
|
|
# back to normal: Enter or Escape or $mod+r
|
|
bindsym Return mode "default"
|
|
bindsym Caps_Lock mode "default"
|
|
bindsym $mod+r mode "default"
|
|
}
|
|
|
|
bindsym $mod+r mode "resize"
|
|
|
|
bar {
|
|
status_command i3status
|
|
position top
|
|
font pango:monospace 12
|
|
}
|