tweak i3 config
This commit is contained in:
@@ -7,5 +7,6 @@ exec --no-startup-id nm-applet
|
|||||||
exec --no-startup-id nextcloud
|
exec --no-startup-id nextcloud
|
||||||
#exec --no-startup-id discord
|
#exec --no-startup-id discord
|
||||||
#exec --no-startup-id signal-desktop
|
#exec --no-startup-id signal-desktop
|
||||||
|
exec_always --no-startup-id blueman-applet
|
||||||
exec_always --no-startup-id feh -z --bg-scale $HOME/Pictures/wallpaper
|
exec_always --no-startup-id feh -z --bg-scale $HOME/Pictures/wallpaper
|
||||||
exec_always --no-startup-id picom --config ~/.config/picom/picom.conf
|
exec_always --no-startup-id picom --config ~/.config/picom/picom.conf
|
||||||
|
|||||||
+2
-2
@@ -47,11 +47,11 @@ no_focus [window_role="pop-up"]
|
|||||||
for_window [window_role="^Preferences$"] floating enable, border pixel 1
|
for_window [window_role="^Preferences$"] floating enable, border pixel 1
|
||||||
for_window [class="^.*"] border pixel 2
|
for_window [class="^.*"] border pixel 2
|
||||||
for_window [class="Spotify|cutefish-calculator|kcalc|Galculator|systemsettings|Streamdeck UI|Cheese|deepin-camera|steam|Cinnamon-settings.py|Bitwarden"] floating enable, border pixel 1
|
for_window [class="Spotify|cutefish-calculator|kcalc|Galculator|systemsettings|Streamdeck UI|Cheese|deepin-camera|steam|Cinnamon-settings.py|Bitwarden"] floating enable, border pixel 1
|
||||||
for_window [class="Nextcloud"] floating enable
|
for_window [class="Nextcloud|Blueman-manager"] floating enable
|
||||||
for_window [title="Friends List"] floating enable
|
for_window [title="Friends List"] floating enable
|
||||||
for_window [class="GParted"] floating enable, resize set 1550 900, border pixel 0, move position center
|
for_window [class="GParted"] floating enable, resize set 1550 900, border pixel 0, move position center
|
||||||
for_window [class="Streamdeck UI"] floating enable, resize set 500 508
|
for_window [class="Streamdeck UI"] floating enable, resize set 500 508
|
||||||
for_window [class="fm|vol|mus|Bitwarden"] floating enable, resize set 1250 700, move scratchpad, border pixel 0
|
for_window [class="fm|vol|mus|Bitwarden"] floating enable, resize set 1250 700, move scratchpad, border pixel 5
|
||||||
|
|
||||||
# Assign workspaces (find class with xprop)
|
# Assign workspaces (find class with xprop)
|
||||||
assign [class="LibreWolf|^[Ff]irefox.*|^Brave.*|firedragon|Chromium"] 2
|
assign [class="LibreWolf|^[Ff]irefox.*|^Brave.*|firedragon|Chromium"] 2
|
||||||
|
|||||||
+104
-91
@@ -1,144 +1,157 @@
|
|||||||
|
set $myTerm "alacritty"
|
||||||
|
set $fileManager "thunar"
|
||||||
|
|
||||||
|
#bindsym $mod+o sticky toggle; exec --no-startup-id notify-send 'Sticky Window'
|
||||||
|
|
||||||
|
bindsym $mod+w exec --no-startup-id rofi -show window -show-icons
|
||||||
|
bindsym $mod+c exec --no-startup-id ~/.config/rofi/scripts/configs.sh
|
||||||
|
|
||||||
|
bindsym Shift+Down resize shrink height 8 px or 8 ppt
|
||||||
|
bindsym Shift+Up resize grow height 8 px or 8 ppt
|
||||||
|
bindsym Shift+Left resize shrink width 8 px or 8 ppt
|
||||||
|
bindsym Shift+Right resize grow width 8 px or 8 ppt
|
||||||
|
|
||||||
# change focus between tiling / floating windows
|
# change focus between tiling / floating windows
|
||||||
bindsym $mod+space focus mode_toggle
|
bindsym $mod+space focus mode_toggle
|
||||||
|
|
||||||
# focus the parent container
|
# focus the parent container
|
||||||
bindsym $mod+a focus parent
|
bindsym $mod+a focus parent
|
||||||
|
|
||||||
# focus the child container
|
# focus the child container
|
||||||
#bindsym $mod+d focus child
|
#bindsym $mod+d focus child
|
||||||
|
|
||||||
# start dmenu (a program launcher)
|
# start dmenu (a program launcher)
|
||||||
bindsym $mod+d exec --no-startup-id "dmenu_run -fn 'SpaceMono Nerd Font-11' -nf '#81a1c1' -nb '#434c5e' -sb '#5e81ac' -sf '#88c0d0'"
|
bindsym $mod+d exec --no-startup-id "dmenu_run -fn 'SpaceMono Nerd Font-11' -nf '#81a1c1' -nb '#434c5e' -sb '#5e81ac' -sf '#88c0d0'"
|
||||||
bindsym $mod+Shift+d exec --no-startup-id "rofi -modi drun,run -show drun"
|
bindsym $mod+Shift+d exec --no-startup-id "rofi -modi drun,run -show drun -show-icons"
|
||||||
#bindsym $mod+Ctrl+d exec --no-startup-id "xlunch ~/.config/xlunch/default.config"
|
#bindsym $mod+Ctrl+d exec --no-startup-id "xlunch ~/.config/xlunch/default.config"
|
||||||
bindsym $mod+period exec --no-startup-id "rofi -modi emoji -show emoji"
|
bindsym $mod+period exec --no-startup-id "rofi -modi emoji -show emoji"
|
||||||
|
|
||||||
# enter fullscreen mode for the focused container
|
# enter fullscreen mode for the focused container
|
||||||
bindsym $mod+f fullscreen toggle
|
bindsym $mod+f fullscreen toggle
|
||||||
|
|
||||||
# change focus
|
# change focus
|
||||||
bindsym $mod+h focus left
|
bindsym $mod+h focus left
|
||||||
bindsym $mod+j focus down
|
bindsym $mod+j focus down
|
||||||
bindsym $mod+k focus up
|
bindsym $mod+k focus up
|
||||||
bindsym $mod+l focus right
|
bindsym $mod+l focus right
|
||||||
|
|
||||||
# kill focused window
|
# kill focused window
|
||||||
bindsym $mod+q kill
|
bindsym $mod+q kill
|
||||||
|
|
||||||
bindsym $mod+r mode "resize"
|
bindsym $mod+r mode "resize"
|
||||||
|
|
||||||
#bindsym $mod+Ctrl+l exec --no-startup-id betterlockscreen -l dimblur
|
#bindsym $mod+Ctrl+l exec --no-startup-id betterlockscreen -l dimblur
|
||||||
bindsym $mod+Ctrl+Escape exec --no-startup-id "archlinux-logout"
|
bindsym $mod+Ctrl+Escape exec --no-startup-id "archlinux-logout"
|
||||||
bindsym $mod+Ctrl+0 exec --no-startup-id "archlinux-logout"
|
bindsym $mod+Ctrl+0 exec --no-startup-id "archlinux-logout"
|
||||||
|
|
||||||
#set $mode_system (l)ock (e)xit switch_(u)ser (s)uspend (h)ibernate (r)eboot (shift+s)hutdown
|
|
||||||
#bindsym $mod+Ctrl+Escape mode "$mode_system"
|
|
||||||
|
|
||||||
|
#set $mode_system (l)ock (e)xit switch_(u)ser (s)uspend (h)ibernate (r)eboot (shift+s)hutdown
|
||||||
|
#bindsym $mod+Ctrl+Escape mode "$mode_system"
|
||||||
#mode "$mode_system" {
|
#mode "$mode_system" {
|
||||||
# bindsym l exec --no-startup-id betterlockscreen -l dimblur
|
# bindsym l exec --no-startup-id betterlockscreen -l dimblur
|
||||||
# bindsym e exec --no-startup-id i3exit logout, mode "default"
|
# bindsym e exec --no-startup-id i3exit logout, mode "default"
|
||||||
# bindsym u exec --no-startup-id i3exit switch_user, mode "default"
|
# bindsym u exec --no-startup-id i3exit switch_user, mode "default"
|
||||||
# #bindsym s exec --no-startup-id i3-msg exit && exit
|
# #bindsym s exec --no-startup-id i3-msg exit && exit
|
||||||
# bindsym s exec betterlockscreen -s -l dimblur
|
# bindsym s exec betterlockscreen -s -l dimblur
|
||||||
# bindsym h exec --no-startup-id i3exit hibernate, mode "default"
|
# bindsym h exec --no-startup-id i3exit hibernate, mode "default"
|
||||||
# bindsym r exec --no-startup-id i3exit reboot, mode "default"
|
# bindsym r exec --no-startup-id i3exit reboot, mode "default"
|
||||||
# bindsym Shift+s exec --no-startup-id i3exit shutdown, mode "default"
|
# bindsym Shift+s exec --no-startup-id i3exit shutdown, mode "default"
|
||||||
|
|
||||||
# bindsym Escape mode "default"
|
# bindsym Escape mode "default"
|
||||||
# bindsym Return mode "default"
|
# bindsym Return mode "default"
|
||||||
#}
|
#}
|
||||||
|
|
||||||
# move focused window
|
# move focused window
|
||||||
bindsym $mod+Shift+h move left
|
bindsym $mod+Shift+h move left
|
||||||
bindsym $mod+Shift+j move down
|
bindsym $mod+Shift+j move down
|
||||||
bindsym $mod+Shift+k move up
|
bindsym $mod+Shift+k move up
|
||||||
bindsym $mod+Shift+l move right
|
bindsym $mod+Shift+l move right
|
||||||
|
|
||||||
# split in horizontal orientation
|
# split in horizontal orientation
|
||||||
#bindsym $mod+Ctrl+h split h; exec notify-send 'Horizontal Split Mode'
|
#bindsym $mod+Ctrl+h split h; exec notify-send 'Horizontal Split Mode'
|
||||||
|
|
||||||
# split in vertical orientation
|
# split in vertical orientation
|
||||||
#bindsym $mod+Ctrl+v split v; exec notify-send 'Vertical Split Mode'
|
#bindsym $mod+Ctrl+v split v; exec notify-send 'Vertical Split Mode'
|
||||||
|
|
||||||
#toggle split mode
|
#toggle split mode
|
||||||
bindsym $mod+Shift+plus split toggle; exec --no-startup-id "notify-send 'Toggled split'"
|
bindsym $mod+Shift+plus split toggle; exec --no-startup-id "notify-send 'Toggled split'"
|
||||||
|
|
||||||
# change container layout (stacked, tabbed, toggle split)
|
# change container layout (stacked, tabbed, toggle split)
|
||||||
bindsym $mod+s layout stacking; exec --no-startup-id "notify-send 'Stacking mode'"
|
bindsym $mod+s layout stacking; exec --no-startup-id "notify-send 'Stacking mode'"
|
||||||
bindsym $mod+t layout tabbed; exec --no-startup-id "notify-send 'Tab mode'"
|
bindsym $mod+t layout tabbed; exec --no-startup-id "notify-send 'Tab mode'"
|
||||||
bindsym $mod+e layout toggle split; exec --no-startup-id "notify-send 'Split Toggle'"
|
bindsym $mod+e layout toggle split; exec --no-startup-id "notify-send 'Split Toggle'"
|
||||||
|
|
||||||
# toggle tiling / floating
|
# toggle tiling / floating
|
||||||
bindsym $mod+Shift+space floating toggle
|
bindsym $mod+Shift+space floating toggle
|
||||||
|
|
||||||
# switch to workspace
|
# switch to workspace
|
||||||
bindsym $mod+1 workspace number $ws1
|
bindsym $mod+1 workspace number $ws1
|
||||||
bindsym $mod+2 workspace number $ws2
|
bindsym $mod+2 workspace number $ws2
|
||||||
bindsym $mod+3 workspace number $ws3
|
bindsym $mod+3 workspace number $ws3
|
||||||
bindsym $mod+4 workspace number $ws4
|
bindsym $mod+4 workspace number $ws4
|
||||||
bindsym $mod+5 workspace number $ws5
|
bindsym $mod+5 workspace number $ws5
|
||||||
bindsym $mod+6 workspace number $ws6
|
bindsym $mod+6 workspace number $ws6
|
||||||
bindsym $mod+7 workspace number $ws7
|
bindsym $mod+7 workspace number $ws7
|
||||||
bindsym $mod+8 workspace number $ws8
|
bindsym $mod+8 workspace number $ws8
|
||||||
bindsym $mod+9 workspace number $ws9
|
bindsym $mod+9 workspace number $ws9
|
||||||
bindsym $mod+0 workspace number $ws10
|
bindsym $mod+0 workspace number $ws10
|
||||||
|
|
||||||
# move focused container to workspace
|
# move focused container to workspace
|
||||||
bindsym $mod+Shift+1 move container to workspace number $ws1
|
bindsym $mod+Shift+1 move container to workspace number $ws1
|
||||||
bindsym $mod+Shift+2 move container to workspace number $ws2
|
bindsym $mod+Shift+2 move container to workspace number $ws2
|
||||||
bindsym $mod+Shift+3 move container to workspace number $ws3
|
bindsym $mod+Shift+3 move container to workspace number $ws3
|
||||||
bindsym $mod+Shift+4 move container to workspace number $ws4
|
bindsym $mod+Shift+4 move container to workspace number $ws4
|
||||||
bindsym $mod+Shift+5 move container to workspace number $ws5
|
bindsym $mod+Shift+5 move container to workspace number $ws5
|
||||||
bindsym $mod+Shift+6 move container to workspace number $ws6
|
bindsym $mod+Shift+6 move container to workspace number $ws6
|
||||||
bindsym $mod+Shift+7 move container to workspace number $ws7
|
bindsym $mod+Shift+7 move container to workspace number $ws7
|
||||||
bindsym $mod+Shift+8 move container to workspace number $ws8
|
bindsym $mod+Shift+8 move container to workspace number $ws8
|
||||||
bindsym $mod+Shift+9 move container to workspace number $ws9
|
bindsym $mod+Shift+9 move container to workspace number $ws9
|
||||||
bindsym $mod+Shift+0 move container to workspace number $ws10
|
bindsym $mod+Shift+0 move container to workspace number $ws10
|
||||||
|
|
||||||
# navigate next/prev workspace
|
# navigate next/prev workspace
|
||||||
bindsym $mod+Tab workspace next
|
bindsym $mod+Tab workspace next
|
||||||
bindsym $mod+Shift+Tab workspace prev
|
bindsym $mod+Shift+Tab workspace prev
|
||||||
bindsym $mod+Ctrl+l workspace next
|
bindsym $mod+Ctrl+l workspace next
|
||||||
bindsym $mod+Ctrl+h workspace prev
|
bindsym $mod+Ctrl+h workspace prev
|
||||||
bindsym $mod+Ctrl+Right workspace next
|
bindsym $mod+Ctrl+Right workspace next
|
||||||
bindsym $mod+Ctrl+Left workspace prev
|
bindsym $mod+Ctrl+Left workspace prev
|
||||||
|
|
||||||
# scratchpad
|
# scratchpad
|
||||||
# move current window to a scratchpad
|
# move current window to a scratchpad
|
||||||
bindsym $mod+Shift+minus move scratchpad
|
bindsym $mod+Shift+minus move scratchpad
|
||||||
# show scratchpad
|
# show scratchpad
|
||||||
bindsym $mod+minus scratchpad show
|
bindsym $mod+minus scratchpad show
|
||||||
|
|
||||||
bindsym $mod+Shift+r restart
|
bindsym $mod+Shift+r restart
|
||||||
|
|
||||||
mode "resize" {
|
mode "resize" {
|
||||||
bindsym h resize shrink width 10 px or 10 ppt
|
bindsym h resize shrink width 10 px or 10 ppt
|
||||||
bindsym j resize grow height 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 k resize shrink height 10 px or 10 ppt
|
||||||
bindsym l resize grow width 10 px or 10 ppt
|
bindsym l resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
bindsym Return mode "default"
|
bindsym Return mode "default"
|
||||||
bindsym Escape mode "default"
|
bindsym Escape mode "default"
|
||||||
bindsym $mod+r mode "default"
|
bindsym $mod+r mode "default"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Multimedia keys
|
# Multimedia keys
|
||||||
set $refresh_i3status killall -SIGUSR1 i3status
|
set $refresh_i3status killall -SIGUSR1 i3status
|
||||||
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
||||||
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
||||||
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
||||||
bindsym XF86AudioStop exec --no-startup-id playerctl stop
|
bindsym XF86AudioStop exec --no-startup-id playerctl stop
|
||||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status
|
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status
|
||||||
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5% && $refresh_i3status
|
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5% && $refresh_i3status
|
||||||
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $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 XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
||||||
bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 10 # increase screen brightness
|
bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 10 # increase screen brightness
|
||||||
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 10 # decrease screen brightness
|
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 10 # decrease screen brightness
|
||||||
|
|
||||||
# Launchers
|
# Launchers
|
||||||
bindsym Print exec --no-startup-id flameshot gui
|
bindsym Print exec --no-startup-id flameshot gui
|
||||||
bindsym $mod+b exec --no-startup-id chromium
|
bindsym $mod+Print exec --no-startup-id screenkey
|
||||||
#bindsym $mod+m exec thunar
|
bindsym $mod+b exec --no-startup-id chromium
|
||||||
|
#bindsym $mod+m exec $fileManager
|
||||||
|
|
||||||
# start a terminal
|
# start a terminal
|
||||||
bindsym $mod+Return exec --no-startup-id alacritty
|
bindsym $mod+Return exec --no-startup-id $myTerm
|
||||||
|
|||||||
Reference in New Issue
Block a user