# This file has been auto-generated by i3-config-wizard(1). # It will not be overwritten, so edit it as you like. # # Should you change your keyboard layout some time, delete # this file and re-run i3-config-wizard(1). # # i3 config file (v4) # # Please see https://i3wm.org/docs/userguide.html for a complete reference! set $mod Mod4 # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. font pango:{{ .font }} 10 # https://github.com/catppuccin/i3 {{- if eq .theme_variant "light" }} set $rosewater #dc8a78 set $flamingo #dd7878 set $pink #ea76cb set $mauve #8839ef set $red #d20f39 set $maroon #e64553 set $peach #fe640b set $green #40a02b set $teal #179299 set $sky #04a5e5 set $sapphire #209fb5 set $blue #1e66f5 set $lavender #7287fd set $text #4c4f69 set $subtext1 #5c5f77 set $subtext0 #6c6f85 set $overlay2 #7c7f93 set $overlay1 #8c8fa1 set $overlay0 #9ca0b0 set $surface2 #acb0be set $surface1 #bcc0cc set $surface0 #ccd0da set $base #eff1f5 set $mantle #e6e9ef set $crust #dce0e8 {{- end }} {{- if eq .theme_variant "dark" }} set $rosewater #f4dbd6 set $flamingo #f0c6c6 set $pink #f5bde6 set $mauve #c6a0f6 set $red #ed8796 set $maroon #ee99a0 set $peach #f5a97f set $green #a6da95 set $teal #8bd5ca set $sky #91d7e3 set $sapphire #7dc4e4 set $blue #8aadf4 set $lavender #b7bdf8 set $text #cad3f5 set $subtext1 #b8c0e0 set $subtext0 #a5adcb set $overlay2 #939ab7 set $overlay1 #8087a2 set $overlay0 #6e738d set $surface2 #5b6078 set $surface1 #494d64 set $surface0 #363a4f set $base #24273a set $mantle #1e2030 set $crust #181926 {{- end }} # target title bg text indicator border client.focused $pink $mantle $text $rosewater $mauve client.focused_inactive $mauve $base $text $rosewater $pink client.unfocused $mauve $base $text $rosewater $mauve client.urgent $peach $base $peach $overlay0 $peach client.placeholder $overlay0 $base $text $overlay0 $overlay0 client.background $base # The combination of xss-lock, nm-applet and pactl is a popular choice, so # they are included here as an example. Modify as you see fit. # xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the # screen before suspend. Use loginctl lock-session to lock your screen. exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork # NetworkManager is the most popular way to manage wireless networks on Linux, # and nm-applet is a desktop environment-independent system tray GUI for it. exec --no-startup-id nm-applet # Use pactl to adjust volume in PulseAudio. set $refresh_i3status killall -SIGUSR1 i3status bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status bindsym $mod+Next exec --no-startup-id amixer set Capture toggle # Use playerctl for media controls bindsym XF86AudioPlay exec playerctl play-pause bindsym XF86AudioNext exec playerctl next bindsym XF86AudioPrev exec playerctl previous # Brightness controls bindsym XF86MonBrightnessUp exec "xbacklight +5" bindsym XF86MonBrightnessDown exec "xbacklight -5" # Screenshot with Flameshot bindsym Print exec flameshot gui # lock screen bindsym $mod+Shift+b exec loginctl lock-session # Use Mouse+$mod to drag floating windows to their wanted position floating_modifier $mod # start a terminal bindsym $mod+Return exec ghostty # open emacsclient bindsym $mod+Shift+Return exec emacsclient -c # scratchpad bindsym $mod+Shift+grave move scratchpad bindsym $mod+grave scratchpad show # kill focused window bindsym $mod+Shift+q kill # start rofi (a program launcher and window switcher) bindsym $mod+shift+z exec "rofi -show run" bindsym $mod+c exec "rofi -show calc" bindsym $mod+z exec "rofi -show drun" bindsym $mod+e exec "rofi -show emoji" bindsym $mod+w exec "rofi -show window" bindsym $mod+u exec "rofi -show unicode" bindsym $mod+Shift+e exec "rofi -show kaomoji" bindsym $mod+Shift+p exec "~/.config/rofi/pass.sh" # bindings for dunst bindsym $mod+n exec dunstctl close-all bindsym $mod+Shift+n exec dunstctl history-pop bindsym $mod+Ctrl+n exec dunstctl context # 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 # split in horizontal orientation bindsym $mod+b split horizontal # split in vertical orientation bindsym $mod+v split v # enter fullscreen mode for the focused container bindsym $mod+f fullscreen toggle # change container layout (stacked, tabbed, toggle split) bindsym $mod+t layout tabbed bindsym $mod+Shift+s layout toggle split # toggle floating sticky windows bindsym $mod+Mod1+s sticky toggle # 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 # focus the child container #bindsym $mod+d focus child # 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 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 # 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+x 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'" # window settings default_border none default_floating_border none # resize window (you can also use the mouse for that) mode "resize" { # These bindings trigger as soon as you enter the resize mode # Pressing left will shrink the window’s width. # Pressing right will grow the window’s width. # Pressing up will shrink the window’s height. # Pressing down will grow the window’s height. bindsym h resize shrink width 10 px or 10 ppt bindsym j resize grow height 10 px or 10 ppt bindsym k 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" # custom bindings bindsym $mod+m exec ymuse bindsym $mod+p exec pavucontrol bindsym $mod+o exec obsidian # workspace bindings assign [class="Steam"] $ws4 assign [class="TelegramDesktop"] $ws6 assign [class="Gajim"] $ws6 assign [class="Element"] $ws6 assign [class="Signal"] $ws6 assign [class=".*weechat"] $ws6 assign [class="Hydrus Client"] $ws7 # startup commands exec ~/.local/bin/startup