This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotfiles_old/.config/i3/config
2018-07-31 21:30:28 +03:00

114 lines
3.6 KiB
Plaintext

set $mod Mod4
font pango:DejaVu Sans Mono 9
exec_always ~/scripts/daemons.sh
exec_always xrdb ~/.xresources
exec_always feh --bg-fill --no-fehbg ~/wallpapers/current
gaps inner 10
default_border pixel 1
bindsym XF86MonBrightnessUp exec ~/scripts/backlight.sh raise
bindsym XF86MonBrightnessDown exec ~/scripts/backlight.sh lower
bindsym XF86AudioRaiseVolume exec ~/scripts/audio.sh raise
bindsym XF86AudioLowerVolume exec ~/scripts/audio.sh lower
bindsym XF86AudioMute exec ~/scripts/audio.sh toggle_mute
bindsym $mod+Shift+r restart
bindsym $mod+Shift+q kill
bindsym $mod+r exec dmenu_run
bindsym $mod+f exec firefox
bindsym $mod+v exec pavucontrol
bindsym $mod+Return exec urxvt
bindsym $mod+Delete exec urxvt -e htop
bindsym $mod+e exec urxvt -e ranger
bindsym $mod+m exec urxvt -e ncmpcpp
bindsym $mod+t exec urxvt -e tremc
bindsym $mod+c exec urxvt -e python -q
bindsym $mod+Shift+p exec ~/scripts/music.sh toggle
bindsym $mod+Shift+n exec ~/scripts/music.sh next
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
bindsym $mod+y resize shrink width 10 px
bindsym $mod+u resize grow height 10 px
bindsym $mod+i resize shrink height 10 px
bindsym $mod+o resize grow width 10 px
bindsym $mod+Ctrl+h split h
bindsym $mod+Ctrl+v split v
bindsym $mod+Ctrl+f fullscreen toggle
bindsym $mod+Ctrl+space floating toggle
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
set_from_resource $background background #000000
set_from_resource $foreground foreground #000000
set_from_resource $darkblack color0 #000000
set_from_resource $black color8 #000000
set_from_resource $darkred color1 #000000
set_from_resource $red color9 #000000
set_from_resource $darkgreen color2 #000000
set_from_resource $green color10 #000000
set_from_resource $darkyellow color3 #000000
set_from_resource $yellow color11 #000000
set_from_resource $darkblue color4 #000000
set_from_resource $blue color12 #000000
set_from_resource $darkmagenta color5 #000000
set_from_resource $magenta color13 #000000
set_from_resource $darkcyan color6 #000000
set_from_resource $cyan color14 #000000
set_from_resource $darkwhite color7 #000000
set_from_resource $white color15 #000000
set $transparent #00000000
# class border background text indicator child_border
client.focused $darkblue $background $foreground $darkblue $darkblue
client.focused_inactive $darkblue $background $foreground $darkblue $darkblue
client.unfocused $black $background $foreground $black $black
client.urgent $darkblue $background $foreground $darkblue $darkblue
client.background $black
bar {
font pango:DejaVu Sans Mono 9
colors {
background $background
statusline $foreground
separator $darkblue
focused_workspace $background $darkblack $foreground
active_workspace $background $darkblack $foreground
inactive_workspace $background $background $black
urgent_workspace $darkblue $background $foreground
}
position top
status_command i3blocks
}