1
0
Fork 0
dotfiles/dot_config/i3/config

330 lines
12 KiB
Text
Raw Permalink Normal View History

# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
2022-04-13 21:54:22 +02:00
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
2022-04-13 21:54:22 +02:00
#
# i3 config file (v4)
2022-04-13 21:54:22 +02:00
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
2022-04-13 21:54:22 +02:00
set $mod Mod4
2022-04-13 21:54:22 +02:00
# 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 10
2022-04-13 21:54:22 +02:00
# Set inner/outer gaps
gaps inner 10
gaps outer 10
2022-04-13 21:54:22 +02:00
2022-09-06 12:12:53 +02:00
# Keyring daemon
2022-09-06 12:17:55 +02:00
exec --no-startup-id gnome-keyring-daemon --start --components=gpg
exec --no-startup-id gnome-keyring-daemon --start --components=secrets
exec --no-startup-id gnome-keyring-daemon --start --components=ssh
exec --no-startup-id gnome-keyring-daemon --start --components=pkcs11
2022-09-06 12:12:53 +02:00
#do not show titlebar on windows:
2022-05-07 16:00:02 +02:00
#new_window 1pixel
2022-04-13 21:54:22 +02:00
# thin borders:
2022-05-07 16:00:02 +02:00
# hide_edge_borders none|vertical|horizontal|both|smart
hide_edge_borders none
2022-04-13 21:54:22 +02:00
# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8
2022-04-13 21:54:22 +02:00
# Start XDG autostart .desktop files using dex. See also
# https://wiki.archlinux.org/index.php/XDG_Autostart
exec --no-startup-id dex --autostart --environment i3
2022-04-13 21:54:22 +02:00
# 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.
2022-04-13 21:54:22 +02:00
# 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
2022-04-13 21:54:22 +02:00
# 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
2022-04-13 21:54:22 +02:00
# Compositor to avoid tearing
# exec --no-startup-id picom -b
exec --no-startup-id picom -CGb --experimental-backend
#Background
exec --no-startup-id feh --bg-scale ~/.config/i3/i3-wall.png
2022-09-03 19:16:14 +02:00
#exec --no-startup-id mplayer -loop 0 -rootwin -ao null -vo x11 -nokeepaspect -noconsolecontrols -fs image.gif
#exec --no-startup-id mpv --wid=0 -loop 0 -ao null -no-input-terminal -fs image.gif
#exec --no-startup-id xwinwrap -ov -fs -- mplayer -fs -rootwin -wid 0 -quiet -nosound image.mp4 -loop 0
# Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id ~/.config/i3/set_volume.sh "+5%" && $refresh_i3status
bindsym XF86AudioLowerVolume exec --no-startup-id ~/.config/i3/set_volume.sh "-5%" && $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
2022-05-07 00:25:33 +02:00
# Media player controls
bindsym XF86AudioPlay exec playerctl play
bindsym XF86AudioPause exec playerctl pause
bindsym XF86AudioPrev exec playerctl previous
bindsym XF86AudioNext exec playerctl next
2022-05-07 00:25:33 +02:00
# Screen brightness controls
bindsym XF86MonBrightnessUp exec xbacklight -inc 5
bindsym XF86MonBrightnessDown exec xbacklight -dec 5
#bindsym XF86AudioMute exec amixer -D pulse sset Master toggle -q
#bindsym XF86AudioLowerVolume exec amixer -D pulse sset Master 1%- unmute -q
#bindsym XF86AudioRaiseVolume exec amixer -D pulse sset Master 1%+ unmute -q
2022-04-13 21:54:22 +02:00
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# start a terminal
# bindsym $mod+Return exec i3-sensible-terminal
2022-05-08 23:51:53 +02:00
# bindsym $mod+Return exec alacritty
bindsym $mod+Return exec kitty
2022-04-13 21:54:22 +02:00
# kill focused window
bindsym $mod+Shift+A kill
2022-04-13 21:54:22 +02:00
# start dmenu (a program launcher)
2022-09-16 08:57:06 +02:00
bindsym $mod+d exec --no-startup-id "rofi -modi drun,run -show drun"
# A more modern dmenu replacement is rofi:
# bindcode $mod+40 exec "rofi -modi drun,run -show drun"
# There also is i3-dmenu-desktop which only displays applications shipping a
# .desktop file. It is a wrapper around dmenu, so you need that installed.
# bindcode $mod+40 exec --no-startup-id i3-dmenu-desktop
2022-04-13 21:54:22 +02:00
# change focus
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
2022-04-13 21:54:22 +02: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
# 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
2022-04-13 21:54:22 +02: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
# split in horizontal orientation
bindsym $mod+b split h
2022-04-13 21:54:22 +02:00
# 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+s layout stacking
bindsym $mod+z layout tabbed
2022-04-13 21:54:22 +02:00
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+q focus parent
2022-04-13 21:54:22 +02:00
# focus the child container
#bindsym $mod+d focus child
2022-04-13 21:54:22 +02:00
# SOURCE OF ALL CONFS
# https://github.com/sharpTrick/set-i3-workspace
2022-04-13 21:54:22 +02:00
# 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"
2022-04-13 21:54:22 +02:00
set $ws6 "6"
set $ws7 "7"
set $ws8 "8"
set $ws9 "9"
set $ws10 "10"
# switch to workspace
bindsym $mod+1 exec ~/.config/i3/relative_workspace.sh $ws1
bindsym $mod+2 exec ~/.config/i3/relative_workspace.sh $ws2
bindsym $mod+3 exec ~/.config/i3/relative_workspace.sh $ws3
bindsym $mod+4 exec ~/.config/i3/relative_workspace.sh $ws4
bindsym $mod+5 exec ~/.config/i3/relative_workspace.sh $ws5
bindsym $mod+6 exec ~/.config/i3/relative_workspace.sh $ws6
bindsym $mod+7 exec ~/.config/i3/relative_workspace.sh $ws7
bindsym $mod+8 exec ~/.config/i3/relative_workspace.sh $ws8
bindsym $mod+9 exec ~/.config/i3/relative_workspace.sh $ws9
bindsym $mod+0 exec ~/.config/i3/relative_workspace.sh $ws10
2022-04-13 21:54:22 +02:00
# move focused container to workspace
bindsym $mod+Shift+1 exec ~/.config/i3/relative_workspace.sh $ws1 move
bindsym $mod+Shift+2 exec ~/.config/i3/relative_workspace.sh $ws2 move
bindsym $mod+Shift+3 exec ~/.config/i3/relative_workspace.sh $ws3 move
bindsym $mod+Shift+4 exec ~/.config/i3/relative_workspace.sh $ws4 move
bindsym $mod+Shift+5 exec ~/.config/i3/relative_workspace.sh $ws5 move
bindsym $mod+Shift+6 exec ~/.config/i3/relative_workspace.sh $ws6 move
bindsym $mod+Shift+7 exec ~/.config/i3/relative_workspace.sh $ws7 move
bindsym $mod+Shift+8 exec ~/.config/i3/relative_workspace.sh $ws8 move
bindsym $mod+Shift+9 exec ~/.config/i3/relative_workspace.sh $ws9 move
bindsym $mod+Shift+0 exec ~/.config/i3/relative_workspace.sh $ws10 move
# kill window
bindsym $mod+Shift+q kill
2022-04-13 21:54:22 +02:00
# 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'"
2022-04-13 21:54:22 +02:00
# 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 windows width.
# Pressing right will grow the windows width.
# Pressing up will shrink the windows height.
# Pressing down will grow the windows height.
2022-09-09 15:51:07 +02:00
bindsym h resize shrink width 5 px or 5 ppt
bindsym j resize grow height 5 px or 5 ppt
bindsym k resize shrink height 5 px or 5 ppt
bindsym l resize grow width 5 px or 5 ppt
# same bindings, but for the arrow keys
2022-09-09 15:51:07 +02:00
bindsym Left resize shrink width 5 px or 5 ppt
bindsym Down resize grow height 5 px or 5 ppt
bindsym Up resize shrink height 5 px or 5 ppt
bindsym Right resize grow width 5 px or 5 ppt
# back to normal: Enter or Escape or $mod+r
bindsym Return mode "default"
bindsym Escape mode "default"
bindsym $mod+r mode "default"
2022-04-13 21:54:22 +02:00
}
bindsym $mod+r mode "resize"
2022-09-09 13:23:24 +02:00
set $mode_notification Notification (q: close, c: close-all, a: context)
2022-09-03 20:46:01 +02:00
mode "$mode_notification" {
bindsym q mode "default", exec dunstctl close
2022-09-09 13:23:24 +02:00
bindsym c mode "default", exec dunstctl close-all
2022-09-03 20:46:01 +02:00
bindsym a mode "default", exec dunstctl context
2022-09-09 15:51:07 +02:00
# back to normal: Enter or Escape or $mod+n
bindsym Return mode "default"
bindsym Escape mode "default"
bindsym $mod+n mode "default"
2022-09-03 20:34:07 +02:00
}
2022-09-03 20:46:01 +02:00
bindsym $mod+n mode "$mode_notification"
2022-09-03 20:34:07 +02:00
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
#bar {
# status_command i3blocks
# font pango:monospace 12
2022-04-13 21:54:22 +02:00
#}
# Lock the system
bindsym $mod+Shift+d exec i3lock -i ~/.config/i3/i3-lock-screen.png -t -f
2022-09-16 20:54:36 +02:00
set_from_resource $cf01 i3wm.client.focused.border
set_from_resource $cf02 i3wm.client.focused.background
set_from_resource $cf03 i3wm.client.focused.text
set_from_resource $cf04 i3wm.client.focused.indicator
set_from_resource $cf05 i3wm.client.focused.child_border
set_from_resource $cuf1 i3wm.client.unfocused.border
set_from_resource $cuf2 i3wm.client.unfocused.background
set_from_resource $cuf3 i3wm.client.unfocused.text
set_from_resource $cuf4 i3wm.client.unfocused.indicator
set_from_resource $cuf5 i3wm.client.unfocused.child_border
set_from_resource $cfi1 i3wm.client.focused_inactive.border
set_from_resource $cfi2 i3wm.client.focused_inactive.background
set_from_resource $cfi3 i3wm.client.focused_inactive.text
set_from_resource $cfi4 i3wm.client.focused_inactive.indicator
set_from_resource $cfi5 i3wm.client.focused_inactive.child_border
set_from_resource $cu01 i3wm.client.urgent.border
set_from_resource $cu02 i3wm.client.urgent.background
set_from_resource $cu03 i3wm.client.urgent.text
set_from_resource $cu04 i3wm.client.urgent.indicator
set_from_resource $cu05 i3wm.client.urgent.child_border
set_from_resource $cp01 i3wm.client.placeholder.border
set_from_resource $cp02 i3wm.client.placeholder.background
set_from_resource $cp03 i3wm.client.placeholder.text
set_from_resource $cp04 i3wm.client.placeholder.indicator
set_from_resource $cp05 i3wm.client.placeholder.child_border
set_from_resource $cb01 i3wm.client.background
# set window colors:
2022-09-16 20:54:36 +02:00
# border background text indicator child_border
client.focused $cf01 $cf02 $cf03 $cf04 $cf05
client.unfocused $cuf1 $cuf2 $cuf3 $cuf4 $cuf5
client.focused_inactive $cfi1 $cfi2 $cfi3 $cfi4 $cfi5
client.urgent $cu01 $cu02 $cu03 $cu04 $cu05
client.placeholder $cp01 $cp02 $cp03 $cp04 $cp05
client.background $cb01
# Toggle gap
2022-05-07 16:00:02 +02:00
set $mode_gaps Toggle gaps: (g) on (f) off
bindsym $mod+g mode "$mode_gaps"
mode "$mode_gaps" {
bindsym g mode "default", gaps inner all set 10, gaps outer all set 10
bindsym f mode "default", gaps inner all set 1, gaps outer all set 1
}
2022-04-13 21:54:22 +02:00
# Toggle window title
2022-05-07 16:00:02 +02:00
default_border pixel 4
default_floating_border pixel 4
2022-04-13 21:54:22 +02:00
# set floating (nontiling)for apps needing it:
2022-09-09 13:23:24 +02:00
for_window [class="scrcpy"] floating enable
2022-04-13 21:54:22 +02:00
2022-05-07 16:00:02 +02:00
# Enable gnome keyring
exec --no-startup-id /usr/bin/gnome-keyring-daemon --start --components=gpg
exec --no-startup-id /usr/bin/gnome-keyring-daemon --start --components=secrets
exec --no-startup-id /usr/bin/gnome-keyring-daemon --start --components=ssh
exec --no-startup-id /usr/bin/gnome-keyring-daemon --start --components=pkcs11
2022-05-07 16:00:02 +02:00
2022-05-08 20:21:43 +02:00
# Start kdeconnect
exec --no-startup-id /usr/lib/kdeconnectd
# Set current monitor configuration
exec --no-startup-id ~/.config/i3/on_i3_start.sh
# Desktop notifications_
exec --no-startup-id /usr/bin/dunst
2022-04-13 21:54:22 +02:00
## Launch Polybar
2022-05-06 23:29:38 +02:00
exec_always --no-startup-id ~/.config/polybar/scripts/launch_polybar
2022-04-13 21:54:22 +02:00