296 lines
10 KiB
Plaintext
296 lines
10 KiB
Plaintext
# Set modifier key as Alt
|
|
set $mod Mod4
|
|
|
|
# Set purple theming & fonts
|
|
set $base #08090B
|
|
set $accent #8D739C
|
|
set $hover #4F3963
|
|
|
|
font pango: Lato 15
|
|
|
|
# Start i3
|
|
exec --no-startup-id dex --autostart --environment i3
|
|
exec --no-startup-id bash -c "pkill -x polybar; sleep 0.5; polybar main &"
|
|
exec --no-startup-id nm-applet
|
|
|
|
exec alacritty
|
|
|
|
# Lock screen with i3lock-color
|
|
bindsym $mod+q exec ~/.config/i3scripts/lock
|
|
|
|
# Default gaps between windows
|
|
gaps outer 10
|
|
gaps inner 5
|
|
|
|
# Adjust floating windows
|
|
floating_modifier $mod
|
|
tiling_drag modifier titlebar
|
|
|
|
bindsym $mod+Return exec alacritty
|
|
bindsym $mod+x kill
|
|
bindsym $mod+d exec "rofi -show drun -show-icons"
|
|
|
|
# Restart i3 in place
|
|
bindsym $mod+Shift+c restart
|
|
|
|
# Adapt i3 to external monitors.
|
|
bindsym $mod+Shift+r exec --no-startup-id autorandr --change
|
|
|
|
# Exit i3 & logout
|
|
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'"
|
|
|
|
# --------------------- WORKSPACES ------------------------- #
|
|
# Define workspaces
|
|
set $ws1 "1:%{T3}%{T-}"
|
|
set $ws2 "2:%{T3}%{T-}"
|
|
set $ws3 "3:%{T3}%{T-}"
|
|
set $ws4 "4:%{T3}%{T-}"
|
|
set $ws5 "5:%{T3}%{T-}"
|
|
set $ws6 "6:%{T3}%{T-}"
|
|
set $ws7 "7:%{T3}%{T-}"
|
|
set $ws8 "8:%{T3}%{T-}"
|
|
set $ws9 "9:%{T3}%{T-}"
|
|
set $ws10 "10:%{T3}%{T-}"
|
|
|
|
# switch to workspace
|
|
bindsym $mod+1 workspace number $ws1
|
|
bindsym $mod+2 workspace number $ws2
|
|
bindsym $mod+3 workspace number $ws3
|
|
bindsym $mod+4 workspace number $ws4
|
|
bindsym $mod+5 workspace number $ws5
|
|
bindsym $mod+6 workspace number $ws6
|
|
bindsym $mod+7 workspace number $ws7
|
|
bindsym $mod+8 workspace number $ws8
|
|
bindsym $mod+9 workspace number $ws9
|
|
bindsym $mod+0 workspace number $ws10
|
|
|
|
# move focused container to workspace
|
|
bindsym $mod+Shift+1 move container to workspace number $ws1
|
|
bindsym $mod+Shift+2 move container to workspace number $ws2
|
|
bindsym $mod+Shift+3 move container to workspace number $ws3
|
|
bindsym $mod+Shift+4 move container to workspace number $ws4
|
|
bindsym $mod+Shift+5 move container to workspace number $ws5
|
|
bindsym $mod+Shift+6 move container to workspace number $ws6
|
|
bindsym $mod+Shift+7 move container to workspace number $ws7
|
|
bindsym $mod+Shift+8 move container to workspace number $ws8
|
|
bindsym $mod+Shift+9 move container to workspace number $ws9
|
|
bindsym $mod+Shift+0 move container to workspace number $ws10
|
|
|
|
# ------------------------ STARTUP APPS ---------------------- #
|
|
|
|
# ------------------------ WINDOWS --------------------------- #
|
|
# change focus
|
|
bindsym $mod+h focus left
|
|
bindsym $mod+j focus down
|
|
bindsym $mod+k focus up
|
|
bindsym $mod+l focus 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
|
|
|
|
# enter fullscreen mode for the focused container
|
|
bindsym $mod+f 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
|
|
|
|
bindsym $mod+v layout splitv
|
|
bindsym $mod+b layout splith
|
|
|
|
# toggle tiling / floating
|
|
bindsym $mod+Shift+space floating toggle
|
|
|
|
# change focus between tiling / floating windows
|
|
bindsym $mod+space focus mode_toggle
|
|
|
|
# Window color customization:
|
|
# class border backgr. text indicator child_border
|
|
client.focused $base $base $base $base $accent
|
|
client.focused_inactive $base $base $hover $base $accent
|
|
client.unfocused $accent $accent $base $base $accent
|
|
client.urgent #2f343a #900000 $hover $base #900000
|
|
client.placeholder #000000 #0c0c0c $hover $base #0c0c0c
|
|
client.background #635380
|
|
|
|
default_border pixel 4
|
|
|
|
# ------------------------- FUNCTION KEY BINDING ---------------------------- #
|
|
# Volume control
|
|
# ------------------------- FUNCTION KEY BINDING ---------------------------- #
|
|
# Volume control (using native PulseAudio commands)
|
|
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5%
|
|
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5%
|
|
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle
|
|
|
|
# Brightness control (using brightnessctl)
|
|
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set 5%+
|
|
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 5%-
|
|
|
|
# Screenshot
|
|
bindsym XF86AudioRecord exec flameshot gui
|
|
#bindsym XF86Search workspace number $ws10
|
|
|
|
# Audio control
|
|
#bindsym XF86AudioPlay exec playerctl play
|
|
bindsym XF86AudioPause exec playerctl pause
|
|
bindsym XF86AudioNext exec playerctl next
|
|
bindsym XF86AudioPrev exec playerctl previous
|
|
|
|
# --------------------- MODES ----------------------#
|
|
set $mode_gaps Gaps: (o)uter, (i)nner, (h)orizontal, (v)ertical, (t)op, (r)ight, (b)ottom, (l)eft
|
|
set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_horiz Horizontal Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_verti Vertical Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_top Top Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_right Right Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_bottom Bottom Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
set $mode_gaps_left Left Gaps: +|-|0 (local), Shift + +|-|0 (global)
|
|
bindsym $mod+Shift+g mode "$mode_gaps"
|
|
|
|
mode "$mode_gaps" {
|
|
bindsym o mode "$mode_gaps_outer"
|
|
bindsym i mode "$mode_gaps_inner"
|
|
bindsym h mode "$mode_gaps_horiz"
|
|
bindsym v mode "$mode_gaps_verti"
|
|
bindsym t mode "$mode_gaps_top"
|
|
bindsym r mode "$mode_gaps_right"
|
|
bindsym b mode "$mode_gaps_bottom"
|
|
bindsym l mode "$mode_gaps_left"
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
|
|
mode "$mode_gaps_outer" {
|
|
bindsym plus gaps outer current plus 5
|
|
bindsym minus gaps outer current minus 5
|
|
bindsym 0 gaps outer current set 0
|
|
|
|
bindsym Shift+plus gaps outer all plus 5
|
|
bindsym Shift+minus gaps outer all minus 5
|
|
bindsym Shift+0 gaps outer all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_inner" {
|
|
bindsym plus gaps inner current plus 5
|
|
bindsym minus gaps inner current minus 5
|
|
bindsym 0 gaps inner current set 0
|
|
|
|
bindsym Shift+plus gaps inner all plus 5
|
|
bindsym Shift+minus gaps inner all minus 5
|
|
bindsym Shift+0 gaps inner all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_horiz" {
|
|
bindsym plus gaps horizontal current plus 5
|
|
bindsym minus gaps horizontal current minus 5
|
|
bindsym 0 gaps horizontal current set 0
|
|
|
|
bindsym Shift+plus gaps horizontal all plus 5
|
|
bindsym Shift+minus gaps horizontal all minus 5
|
|
bindsym Shift+0 gaps horizontal all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_verti" {
|
|
bindsym plus gaps vertical current plus 5
|
|
bindsym minus gaps vertical current minus 5
|
|
bindsym 0 gaps vertical current set 0
|
|
|
|
bindsym Shift+plus gaps vertical all plus 5
|
|
bindsym Shift+minus gaps vertical all minus 5
|
|
bindsym Shift+0 gaps vertical all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_top" {
|
|
bindsym plus gaps top current plus 5
|
|
bindsym minus gaps top current minus 5
|
|
bindsym 0 gaps top current set 0
|
|
|
|
bindsym Shift+plus gaps top all plus 5
|
|
bindsym Shift+minus gaps top all minus 5
|
|
bindsym Shift+0 gaps top all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_right" {
|
|
bindsym plus gaps right current plus 5
|
|
bindsym minus gaps right current minus 5
|
|
bindsym 0 gaps right current set 0
|
|
|
|
bindsym Shift+plus gaps right all plus 5
|
|
bindsym Shift+minus gaps right all minus 5
|
|
bindsym Shift+0 gaps right all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_bottom" {
|
|
bindsym plus gaps bottom current plus 5
|
|
bindsym minus gaps bottom current minus 5
|
|
bindsym 0 gaps bottom current set 0
|
|
|
|
bindsym Shift+plus gaps bottom all plus 5
|
|
bindsym Shift+minus gaps bottom all minus 5
|
|
bindsym Shift+0 gaps bottom all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
mode "$mode_gaps_left" {
|
|
bindsym plus gaps left current plus 5
|
|
bindsym minus gaps left current minus 5
|
|
bindsym 0 gaps left current set 0
|
|
|
|
bindsym Shift+plus gaps left all plus 5
|
|
bindsym Shift+minus gaps left all minus 5
|
|
bindsym Shift+0 gaps left all set 0
|
|
|
|
bindsym Return mode "$mode_gaps"
|
|
bindsym Escape mode "default"
|
|
}
|
|
|
|
# Resize mode
|
|
mode "resize" {
|
|
bindsym h resize shrink width 10 px or 10 ppt
|
|
bindsym k resize grow height 10 px or 10 ppt
|
|
bindsym j resize shrink 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 Escape mode "default"
|
|
bindsym $mod+r mode "default"
|
|
}
|
|
|
|
bindsym $mod+r mode "resize"
|
|
|
|
# Creating ability to lock, logout, suspend, hibernate, reboot, and shutdown.
|
|
set $mode_system System (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
|
|
mode "$mode_system" {
|
|
bindsym l exec --no-startup-id lock-screen, mode "default"
|
|
bindsym e exec --no-startup-id i3exit logout, mode "default"
|
|
bindsym s exec --no-startup-id i3exit suspend, mode "default"
|
|
bindsym h exec --no-startup-id i3exit hibernate, mode "default"
|
|
bindsym r exec --no-startup-id i3exit reboot, mode "default"
|
|
bindsym Shift+s exec --no-startup-id i3exit shutdown, mode "default"
|
|
|
|
# back to normal: Enter or Escape
|
|
bindsym Return mode "default"
|
|
bindsym Escape mode "default"
|
|
}
|
|
bindsym $mod+Shift+Escape mode "$mode_system"
|