dotfiles/config/i3/config.j2

405 lines
17 KiB
Plaintext
Raw Normal View History

2020-10-18 11:01:24 +00:00
# vi:syntax=conf
2015-07-16 11:49:19 +00:00
# i3 config file (v4)
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
2015-09-26 19:32:00 +00:00
# Set mod key (Mod1=<Alt>, Mod4=<Super>)
2015-07-16 11:49:19 +00:00
set $mod Mod4
2015-09-26 19:32:00 +00:00
# set default desktop layout (default is tiling)
# workspace_layout tabbed <stacking|tabbed>
# Configure border style <normal|1pixel|pixel xx|none|pixel>
new_window pixel 2
new_float normal
# Hide borders
hide_edge_borders both
# change borders
#bindsym $mod+u border none
#bindsym $mod+y border pixel 2
#bindsym $mod+n border normal
2018-08-17 13:34:09 +00:00
# Compatibility layer for people coming from other backgrounds
bindsym Mod1+Tab exec --no-startup-id rofi -modi window -show window
bindsym Mod1+F2 exec --no-startup-id rofi -modi drun -show drun
bindsym Mod1+F4 kill
2015-07-16 11:49:19 +00:00
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
2015-09-26 19:32:00 +00:00
font pango:DejaVu Sans 8
2015-07-16 11:49:19 +00:00
font pango:Sans 8
2015-09-26 19:32:00 +00:00
# Use Mouse+$mod to drag floating windows
floating_modifier $mod
2015-07-16 11:49:19 +00:00
# kill focused window
2016-10-28 08:28:16 +00:00
bindsym $mod+z kill
2015-09-26 19:32:00 +00:00
bindsym button2 kill
2015-07-16 11:49:19 +00:00
2018-08-17 13:34:09 +00:00
bindsym $mod+c exec --no-startup-id rofi-pass --last-used
2019-10-17 10:44:30 +00:00
bindsym $mod+i exec --no-startup-id rofimoji
2018-10-08 21:52:53 +00:00
bindsym $mod+plus exec --no-startup-id rofi -modi ssh -show ssh
bindsym $mod+ù exec --no-startup-id rofi -modi ssh -show ssh -ssh-command '{terminal} -e {ssh-client} {host} -t "sudo -s -E"'
2018-08-17 13:34:09 +00:00
bindsym $mod+Tab exec --no-startup-id rofi -modi window -show window
2015-09-26 19:32:00 +00:00
# start program launcher
2018-08-17 13:34:09 +00:00
bindsym $mod+d exec --no-startup-id rofi -modi run -show run
bindsym $mod+Shift+d exec --no-startup-id rofi -modi drun -show drun
2015-09-26 19:32:00 +00:00
# Start Applications
2020-10-17 21:47:48 +00:00
# bindsym $mod+Return exec urxvtc
bindsym $mod+Return exec alacritty
2018-10-08 21:52:53 +00:00
bindsym $mod+Shift+Return exec urxvt
2015-09-26 19:32:00 +00:00
bindsym $mod+p exec thunar
2020-05-25 07:05:56 +00:00
bindsym $mod+m exec qutebrowser --override-restore --backend=webengine
# bindsym $mod+m exec firefox
2015-09-26 19:32:00 +00:00
# Volume control
2017-09-17 16:42:53 +00:00
bindsym XF86AudioRaiseVolume exec pactl set-sink-mute @DEFAULT_SINK@ false; exec pactl set-sink-volume @DEFAULT_SINK@ +5%
bindsym XF86AudioLowerVolume exec pactl set-sink-mute @DEFAULT_SINK@ false; exec pactl set-sink-volume @DEFAULT_SINK@ -5%
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ true
bindsym $mod+F7 exec pactl suspend-sink @DEFAULT_SINK@ 1; exec pactl suspend-sink @DEFAULT_SINK@ 0
# Re-synchronize bluetooth headset
2018-05-21 08:57:19 +00:00
bindsym XF86AudioPrev exec mpc prev
bindsym XF86AudioPlay exec mpc toggle
bindsym XF86AudioNext exec mpc next
2019-08-04 17:05:57 +00:00
bindsym $mod+F10 exec ~/.config/scripts/showKeyboardLayout
2019-03-20 21:14:09 +00:00
bindsym $mod+F11 exec xterm -e 'pacmixer'
bindsym $mod+F12 exec xterm -e 'pacmixer'
2015-09-26 19:32:00 +00:00
#Brightness control
2018-10-08 21:52:53 +00:00
bindsym XF86MonBrightnessDown exec xbacklight -dec 5 -time 0
bindsym XF86MonBrightnessUp exec xbacklight -inc 5 -time 0
2015-09-26 19:32:00 +00:00
# Screenshots
2019-01-06 13:05:05 +00:00
bindsym Print exec scrot -ue 'mv $f ~/Screenshots/ && optipng ~/Screenshots/$f'
bindsym $mod+Print exec scrot -e 'mv $f ~/Screenshots/ && optipng ~/Screenshots/$f'
bindsym Ctrl+Print exec sleep 1 && scrot -se 'mv $f ~/Screenshots/ && optipng ~/Screenshots/$f'
2015-09-26 19:32:00 +00:00
2018-11-24 12:45:14 +00:00
focus_follows_mouse no
mouse_warping output
2015-07-16 11:49:19 +00:00
# change focus
bindsym $mod+h focus left; exec ~/.config/i3/focus_windows
bindsym $mod+j focus down; exec ~/.config/i3/focus_windows
bindsym $mod+k focus up; exec ~/.config/i3/focus_windows
bindsym $mod+l focus right; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
2016-10-28 05:50:59 +00:00
## alternatively, you can use the cursor keys:
#bindsym $mod+Left focus left
#bindsym $mod+Down focus down
#bindsym $mod+Up focus up
#bindsym $mod+Right focus right
2015-07-16 11:49:19 +00:00
# move focused window
bindsym $mod+Shift+h move left; exec ~/.config/i3/focus_windows
bindsym $mod+Shift+j move down; exec ~/.config/i3/focus_windows
bindsym $mod+Shift+k move up; exec ~/.config/i3/focus_windows
bindsym $mod+Shift+l move right; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
2016-10-28 05:50:59 +00:00
## alternatively, you can use the cursor keys:
#bindsym $mod+Shift+Left move left
#bindsym $mod+Shift+Down move down
#bindsym $mod+Shift+Up move up
#bindsym $mod+Shift+Right move right
2015-07-16 11:49:19 +00:00
2015-09-26 19:32:00 +00:00
# workspace back and forth (with/without active container)
2017-06-27 07:19:59 +00:00
workspace_auto_back_and_forth no
bindsym $mod+b workspace back_and_forth; exec ~/.config/i3/focus_windows
bindsym $mod+Shift+b move container to workspace back_and_forth; workspace back_and_forth; exec ~/.config/i3/focus_windows
2015-09-26 19:32:00 +00:00
2015-07-16 11:49:19 +00:00
# split in horizontal orientation
bindsym $mod+g split h; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
# split in vertical orientation
bindsym $mod+v split v; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
2015-09-26 19:32:00 +00:00
# toggle fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking; exec ~/.config/i3/focus_windows
bindsym $mod+w layout tabbed; exec ~/.config/i3/focus_windows
bindsym $mod+e layout toggle split; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
# focus the parent container
bindsym $mod+a focus parent; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
# focus the child container
bindsym $mod+q focus child; exec ~/.config/i3/focus_windows
2015-09-26 19:32:00 +00:00
# Workspace names
2017-07-02 20:06:24 +00:00
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
2015-07-16 11:49:19 +00:00
# Workspace output
{% set screens = ["HDMI-0", "eDP-1-1"] %}
{% for i in range(1, 11) %}
workspace "$WS{{ i }}" output {{ screens[(i - 1) % (screens | length)] }}
{% endfor %}
2015-07-16 11:49:19 +00:00
# switch to workspace
bindsym $mod+1 workspace $WS1; exec ~/.config/i3/focus_windows
bindsym $mod+2 workspace $WS2; exec ~/.config/i3/focus_windows
bindsym $mod+3 workspace $WS3; exec ~/.config/i3/focus_windows
bindsym $mod+4 workspace $WS4; exec ~/.config/i3/focus_windows
bindsym $mod+5 workspace $WS5; exec ~/.config/i3/focus_windows
bindsym $mod+6 workspace $WS6; exec ~/.config/i3/focus_windows
bindsym $mod+7 workspace $WS7; exec ~/.config/i3/focus_windows
bindsym $mod+8 workspace $WS8; exec ~/.config/i3/focus_windows
bindsym $mod+9 workspace $WS9; exec ~/.config/i3/focus_windows
bindsym $mod+0 workspace $WS10; exec ~/.config/i3/focus_windows
2015-09-26 19:32:00 +00:00
#navigate workspaces next / previous
bindsym $mod+Ctrl+h workspace prev_on_output; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+l workspace next_on_output; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+j workspace prev; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+k workspace next; exec ~/.config/i3/focus_windows
2016-10-28 05:50:59 +00:00
##navigate workspaces next / previous (arrow keys)
#bindsym $mod+Ctrl+Left workspace prev_on_output
#bindsym $mod+Ctrl+Right workspace next_on_output
#bindsym $mod+Ctrl+Down workspace prev
#bindsym $mod+Ctrl+Up workspace next
# Move to workspace next / previous with focused container
bindsym $mod+Ctrl+Shift+h move container to workspace prev_on_output; workspace prev_on_output; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+Shift+l move container to workspace next_on_output; workspace next_on_output; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+Shift+j move container to workspace prev; workspace prev; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+Shift+k move container to workspace next; workspace next; exec ~/.config/i3/focus_windows
2016-10-28 05:50:59 +00:00
## Move to workspace next / previous with focused container (arrow keys)
#bindsym $mod+Ctrl+Shift+Left move container to workspace prev_on_output; workspace prev_on_output
#bindsym $mod+Ctrl+Shift+Right move container to workspace next_on_output; workspace next_on_output
#bindsym $mod+Ctrl+Shift+Down move container to workspace prev; workspace prev
#bindsym $mod+Ctrl+Shift+Up move container to workspace next; workspace next
# move focused container to workspace
bindsym $mod+ctrl+1 move container to workspace $ws1; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+2 move container to workspace $ws2; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+3 move container to workspace $ws3; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+4 move container to workspace $ws4; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+5 move container to workspace $ws5; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+6 move container to workspace $ws6; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+7 move container to workspace $ws7; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+8 move container to workspace $ws8; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+9 move container to workspace $ws9; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+0 move container to workspace $ws10; exec ~/.config/i3/focus_windows
# move to workspace with focused container
bindsym $mod+shift+1 move container to workspace $ws1; workspace $ws1; exec ~/.config/i3/focus_windows
bindsym $mod+shift+2 move container to workspace $ws2; workspace $ws2; exec ~/.config/i3/focus_windows
bindsym $mod+shift+3 move container to workspace $ws3; workspace $ws3; exec ~/.config/i3/focus_windows
bindsym $mod+shift+4 move container to workspace $ws4; workspace $ws4; exec ~/.config/i3/focus_windows
bindsym $mod+shift+5 move container to workspace $ws5; workspace $ws5; exec ~/.config/i3/focus_windows
bindsym $mod+shift+6 move container to workspace $ws6; workspace $ws6; exec ~/.config/i3/focus_windows
bindsym $mod+shift+7 move container to workspace $ws7; workspace $ws7; exec ~/.config/i3/focus_windows
bindsym $mod+shift+8 move container to workspace $ws8; workspace $ws8; exec ~/.config/i3/focus_windows
bindsym $mod+shift+9 move container to workspace $ws9; workspace $ws9; exec ~/.config/i3/focus_windows
bindsym $mod+shift+0 move container to workspace $ws10; workspace $ws10; exec ~/.config/i3/focus_windows
2016-10-28 05:50:59 +00:00
## move workspaces to screen
#bindsym $mod+ctrl+shift+r move workspace to output right
#bindsym $mod+ctrl+shift+l move workspace to output left
#bindsym $mod+Ctrl+Shift+u move workspace to output above
#bindsym $mod+Ctrl+Shift+d move workspace to output below
# move workspaces to screen (arrow keys)
bindsym $mod+ctrl+shift+Right move workspace to output right; exec ~/.config/i3/focus_windows
bindsym $mod+ctrl+shift+Left move workspace to output left; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+Shift+Up move workspace to output above; exec ~/.config/i3/focus_windows
bindsym $mod+Ctrl+Shift+Down move workspace to output below; exec ~/.config/i3/focus_windows
2015-09-26 19:32:00 +00:00
2019-10-17 10:44:30 +00:00
# Default layout = tabs, since I mostly exclusively use them
workspace_layout tabbed
2015-09-26 19:32:00 +00:00
# Open specific applications in floating mode
2017-11-02 15:48:43 +00:00
for_window [title="pacmixer"] floating enable border pixel 2
2019-08-11 15:06:45 +00:00
for_window [class="Firefox"] layout tabbed # Doesn't seem to work anymore
2016-06-20 15:28:17 +00:00
for_window [class="qutebrowser"] layout tabbed
2015-09-26 19:32:00 +00:00
for_window [window_role="pop-up"] floating enable
for_window [window_role="task_dialog"] floating enable
2018-07-10 12:50:07 +00:00
for_window [ title="^pdfpc.*" window_role="presenter" ] move to output left, fullscreen
for_window [ title="^pdfpc.*" window_role="presentation" ] move to output right, fullscreen
2015-09-26 19:32:00 +00:00
# switch to workspace with urgent window automatically
for_window [urgent=latest] focus
2015-07-16 11:49:19 +00:00
2015-09-26 19:32:00 +00:00
# focus urgent window
2016-12-18 17:25:25 +00:00
#bindsym $mod+x [urgent=latest] focus
2015-07-16 11:49:19 +00:00
# reload the configuration file
bindsym $mod+Shift+c reload
2015-09-26 19:32:00 +00:00
2015-07-16 11:49:19 +00:00
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
2015-09-26 19:32:00 +00:00
2015-07-16 11:49:19 +00:00
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exit
2015-09-26 19:32:00 +00:00
2018-10-14 14:59:49 +00:00
# Set shut down, restart and locking features
set $mode_kblock Keyboard lock
mode "$mode_kblock" {
bindsym $mod+Shift+Escape mode "$mode_kblock"
}
bindsym $mod+Shift+Escape mode "$mode_kblock"
2015-09-26 19:32:00 +00:00
# Set shut down, restart and locking features
set $locker $HOME/.config/i3/lock
set $mode_system [L] Vérouillage [E] Déconnexion [S] Veille [H] Hibernation [R] Redémarrage [P] Extinction
mode "$mode_system" {
bindsym l exec --no-startup-id $locker, mode "default"
bindsym e exit, mode "default"
2016-12-04 13:20:46 +00:00
bindsym s exec --no-startup-id $locker & systemctl suspend, mode "default"
bindsym h exec --no-startup-id $locker & systemctl hibernate, mode "default"
2015-09-26 19:32:00 +00:00
bindsym r exec --no-startup-id systemctl reboot, mode "default"
2016-12-04 13:20:46 +00:00
bindsym p exec --no-startup-id systemctl poweroff -i, mode "default"
2015-09-26 19:32:00 +00:00
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+Escape mode "$mode_system"
2015-07-16 11:49:19 +00:00
# resize window (you can also use the mouse for that)
2015-09-26 19:32:00 +00:00
mode "Resize" {
2015-07-16 11:49:19 +00:00
# These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the windows width.
# Pressing right will grow the windows width.
# Pressing up will shrink the windows height.
# Pressing down will grow the windows height.
bindsym h resize shrink width 10 px or 10 ppt; exec ~/.config/i3/focus_windows
bindsym j resize grow height 10 px or 10 ppt; exec ~/.config/i3/focus_windows
bindsym k resize shrink height 10 px or 10 ppt; exec ~/.config/i3/focus_windows
bindsym l resize grow width 10 px or 10 ppt; exec ~/.config/i3/focus_windows
2015-07-16 11:49:19 +00:00
2016-10-28 05:50:59 +00:00
## same bindings, but for the arrow keys
#bindsym Left resize shrink width 10 px or 10 ppt
#bindsym Down resize grow height 10 px or 10 ppt
#bindsym Up resize shrink height 10 px or 10 ppt
#bindsym Right resize grow width 10 px or 10 ppt
2015-07-16 11:49:19 +00:00
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
2015-09-26 19:32:00 +00:00
bindsym $mod+r mode "Resize"
2015-07-16 11:49:19 +00:00
2019-10-17 10:44:30 +00:00
set $mode_pres_main "Presentation (main display)"
mode $mode_pres_main {
bindsym b workspace $WS3, workspace $WS4, mode $mode_pres_sec
2019-03-20 21:14:09 +00:00
# back to normal: Enter or Escape
2019-10-17 10:44:30 +00:00
bindsym q mode "default"
# bindsym Escape mode "default"
bindsym Return mode "default"
}
set $mode_pres_sec "Presentation (secondary display)"
mode $mode_pres_sec {
bindsym b workspace $WS2, workspace $WS1, mode $mode_pres_main
# back to normal: Enter or Escape
bindsym q mode "default"
# bindsym Escape mode "default"
2019-03-20 21:14:09 +00:00
bindsym Return mode "default"
}
2019-10-17 10:44:30 +00:00
bindsym $mod+Shift+p mode $mode_pres_main
2019-03-20 21:14:09 +00:00
set $mode_screen Screen setup [A] Auto [L] Load [S] Save [R] Remove [D] Default
bindsym $mod+t mode "$mode_screen"
mode "$mode_screen" {
bindsym a exec autorandr --change --force, mode "default"
bindsym l exec ~/.config/i3/autorandrloadmenu, mode "default"
bindsym s exec ~/.config/i3/autorandrsavemenu, mode "default"
bindsym r exec ~/.config/i3/autorandrremovemenu, mode "default"
bindsym d exec ~/.config/i3/autorandrdefaultmenu, mode "default"
2015-07-16 11:49:19 +00:00
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Screen temperature ("redness") setting
2017-02-11 15:22:44 +00:00
bindsym $mod+y mode "$mode_temp"
set $mode_temp Temperature [R] Red [D] Dust storm [C] Campfire [O] Normal [A] All nighter [B] Blue
mode "$mode_temp" {
bindsym r exec sct 1000
bindsym d exec sct 2000
bindsym c exec sct 4500
bindsym o exec sct
bindsym a exec sct 8000
bindsym b exec sct 10000
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
2015-09-26 19:32:00 +00:00
# Inactivity settings
2015-11-20 13:03:59 +00:00
exec --no-startup-id xautolock -time 10 -locker 'xset dpms force standby' -killtime 1 -killer '$locker'
2018-10-14 14:59:49 +00:00
bindsym $mod+F1 exec --no-startup-id sh -c "sleep .25 && xset dpms force off"
2015-09-26 19:32:00 +00:00
bindsym $mod+F4 exec --no-startup-id xautolock -disable
bindsym $mod+F5 exec --no-startup-id xautolock -enable
2015-07-16 11:49:19 +00:00
2015-09-26 19:32:00 +00:00
# Autostart applications
#exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 # Password remembering
#exec --no-startup-id gnome-keyring-daemon # Password remembering
2020-10-17 21:47:48 +00:00
# exec --no-startup-id urxvtd -q -f # urxvt daemon
{% if auto_numlock %}
2016-06-10 16:28:56 +00:00
exec --no-startup-id numlockx on # Activate Num lock
{% endif %}
2018-05-21 08:57:19 +00:00
exec --no-startup-id unclutter -root # Hide mouse cursor after some time
#exec --no-startup-id dunst # Notifications (handled by systemd)
2017-07-26 07:42:41 +00:00
exec --no-startup-id keynav # Keyboard cursor controller
#exec --no-startup-id mpd # Music Player Daemon (handled by systemd)
2018-10-06 08:27:36 +00:00
# exec --no-startup-id ~/.config/i3/ashuffle # MPD Auto-refill
2020-01-06 15:23:50 +00:00
exec --no-startup-id autorandr --change --force # Screen configuration and everything that depends on it
{% if has_battery %}
exec --no-startup-id ~/.config/i3/batteryNotify -d # Battery state notification
{% endif %}
2020-12-27 13:20:44 +00:00
# exec --no-startup-id ~/.config/i3/aw_start # Activity tracker
2015-07-16 11:49:19 +00:00
2021-01-09 17:58:18 +00:00
{{ base16_schemes['schemes'][base16_scheme]['i3']['colors']['base16-' + base16_scheme + '.config'] }}
2020-10-18 11:01:24 +00:00
set $ignore #ff00ff
2018-07-30 08:55:06 +00:00
2020-10-18 11:01:24 +00:00
# Basic color configuration using the Base16 variables for windows and borders.
# Property Name Border BG Text Indicator Child Border
2020-12-27 13:20:44 +00:00
client.focused $base0B $base0B $base00 $base00 $base0B
2020-10-18 11:01:24 +00:00
client.focused_inactive $base02 $base02 $base05 $base02 $base02
client.unfocused $base05 $base04 $base00 $base04 $base00
client.urgent $base0F $base08 $base00 $base08 $base0F
client.placeholder $ignore $base00 $base05 $ignore $base00
client.background $base07
# I set the color of the active tab as the the background color
# of the terminal so they merge together. This is the opposite
# of what I used before: unfocused color was the terminal
# background color. Either I get used to it, or I should revert.
2018-10-06 08:27:36 +00:00
# bar {
# i3bar_command ~/.config/lemonbar/bar.py
# }