batman
This commit is contained in:
commit
7cc272c595
46 changed files with 2888 additions and 0 deletions
153
dots/.config/i3/config
Executable file
153
dots/.config/i3/config
Executable file
|
@ -0,0 +1,153 @@
|
|||
# set modifier
|
||||
set $win Mod4
|
||||
set $super Mod1
|
||||
# which should be ALT
|
||||
|
||||
# set font
|
||||
font pango:"JetBrainsMono Nerd Font" 9, Rubik Regular 9
|
||||
|
||||
# use mouse+$super to drag floating windows to their wanted position
|
||||
floating_modifier $super
|
||||
|
||||
# autostart
|
||||
exec --no-startup-id hsetroot -center ~/.wallpaper.png
|
||||
|
||||
# start a terminal
|
||||
bindsym $super+Return exec i3-sensible-terminal
|
||||
bindsym $super+t exec ghostty
|
||||
|
||||
bindsym $win+r exec rofi -show drun -modi drun,filebrowser,run,window,ssh
|
||||
|
||||
# start dmenu (a program launcher)
|
||||
bindsym $super+d exec i3-dmenu-desktop --dmenu="dmenu -i -b \
|
||||
-fn 'Poppins:size=9' -nb '#141c21' -nf '#93a1a1' \
|
||||
-sb '#289c93' -sf '#141c21'"
|
||||
|
||||
# common apps keybinds
|
||||
bindsym Print exec scrot 'Cheese_%a-%d%b%y_%H.%M.png' -e 'xdg-open ~/$f'
|
||||
bindsym $win+l exec i3lock -i ~/.lock.png
|
||||
bindsym $super+c exec zen-browser
|
||||
bindsym $super+e exec caja
|
||||
|
||||
# change volume and brightness
|
||||
bindsym XF86AudioRaiseVolume exec amixer -q set Master 5%+
|
||||
bindsym XF86AudioLowerVolume exec amixer -q set Master 5%-
|
||||
bindsym XF86AudioMute exec amixer set Master toggle
|
||||
bindsym XF86MonBrightnessUp exec brightnessctl set 5%+
|
||||
bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
|
||||
|
||||
# kill focused window
|
||||
bindsym $super+q kill
|
||||
bindsym $win+F4 kill
|
||||
|
||||
# change focus
|
||||
# bindsym $super+Left focus left
|
||||
# bindsym $super+Down focus down
|
||||
# bindsym $super+Up focus up
|
||||
# bindsym $super+Right focus right
|
||||
|
||||
# move focused window
|
||||
# bindsym $super+Shift+Left move left
|
||||
# bindsym $super+Shift+Down move down
|
||||
# bindsym $super+Shift+Up move up
|
||||
# bindsym $super+Shift+Right move right
|
||||
|
||||
# change focus -- VIM
|
||||
bindsym $super+h focus left
|
||||
bindsym $super+j focus down
|
||||
bindsym $super+k focus up
|
||||
bindsym $super+l focus right
|
||||
|
||||
# move focused window -- VIM
|
||||
bindsym $super+Control+h move left
|
||||
bindsym $super+Control+j move down
|
||||
bindsym $super+Control+k move up
|
||||
bindsym $super+Control+l move right
|
||||
|
||||
# split in horizontal or vertical orientation
|
||||
bindsym $win+h split h
|
||||
bindsym $win+v split v
|
||||
|
||||
# change split direction for already opened windows
|
||||
bindsym $super+s layout toggle split
|
||||
|
||||
# enter fullscreen mode for the focused container
|
||||
bindsym $super+f fullscreen toggle
|
||||
|
||||
# toggle tiling / floating
|
||||
bindsym $super+Shift+f floating toggle
|
||||
|
||||
# change focus between tiling / floating windows
|
||||
bindsym $super+Shift+space focus mode_toggle
|
||||
|
||||
# switch to workspace
|
||||
bindsym $super+Shift+l workspace next
|
||||
bindsym $super+Shift+h workspace prev
|
||||
bindsym $super+1 workspace 1:I
|
||||
bindsym $super+2 workspace 2:II
|
||||
bindsym $super+3 workspace 3:III
|
||||
bindsym $super+4 workspace 4:IV
|
||||
bindsym $super+5 workspace 5:V
|
||||
bindsym $super+6 workspace 6:VI
|
||||
|
||||
# move focused container to workspace
|
||||
bindsym $super+Shift+1 move container to workspace 1:I
|
||||
bindsym $super+Shift+2 move container to workspace 2:II
|
||||
bindsym $super+Shift+3 move container to workspace 3:III
|
||||
bindsym $super+Shift+4 move container to workspace 4:IV
|
||||
bindsym $super+Shift+5 move container to workspace 5:V
|
||||
bindsym $super+Shift+6 move container to workspace 6:VI
|
||||
|
||||
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
||||
bindsym $super+Shift+r exec "i3-msg restart"
|
||||
|
||||
# exit i3
|
||||
bindsym $super+Shift+m exec "i3-nagbar -t warning -m 'Really, exit?' \
|
||||
-b 'Yes' 'i3-msg exit'"
|
||||
|
||||
# resize window (you can also use the mouse for that)
|
||||
mode "resize" {
|
||||
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
|
||||
bindsym Return mode "default"
|
||||
}
|
||||
bindsym $super+r mode "resize"
|
||||
|
||||
# panel
|
||||
bar {
|
||||
status_command i3status
|
||||
position top
|
||||
workspace_min_width 24
|
||||
padding 2px 8px 2px 8px
|
||||
strip_workspace_numbers yes
|
||||
|
||||
colors {
|
||||
background #141c21
|
||||
statusline #141c21
|
||||
separator #141c21
|
||||
|
||||
# colour of border, background, and text
|
||||
focused_workspace #141c21 #d12f2c #93a1a1
|
||||
active_workspace #141c21 #141c21 #93a1a1
|
||||
inactive_workspace #141c21 #141c21 #93a1a1
|
||||
urgent_workspace #141c21 #b08500 #93a1a1
|
||||
}
|
||||
}
|
||||
|
||||
# colour of border, background, text, indicator, and child_border
|
||||
client.focused #d12f2c #263640 #93a1a1 #696ebf #2587cc1
|
||||
client.focused_inactive #263640 #b08500 #93a1a1 #263640 #263640
|
||||
client.unfocused #263640 #b08500 #93a1a1 #263640 #263640
|
||||
client.urgent #263640 #b08500 #93a1a1 #263640 #263640
|
||||
client.placeholder #263640 #b08500 #93a1a1 #263640 #263640
|
||||
client.background #263640
|
||||
|
||||
# window rules, you can find the window class using xprop
|
||||
for_window [class=Eog|Sxiv|feh|mpv|Vlc|File-roller|Xarchiver] floating enable
|
||||
for_window [class=Eog|Sxiv|feh|mpv|Vlc|File-roller|Xarchiver] focus
|
||||
for_window [class=".*"] border pixel 8
|
||||
hide_edge_borders smart
|
||||
gaps inner 12
|
||||
smart_gaps on
|
Loading…
Add table
Add a link
Reference in a new issue