bspwm: add
This commit is contained in:
106
.config/sxhkd/sxhkdrc
Executable file
106
.config/sxhkd/sxhkdrc
Executable file
@ -0,0 +1,106 @@
|
||||
# Keybindings
|
||||
|
||||
# Basic
|
||||
super + w
|
||||
bspc node -c
|
||||
|
||||
super + ctrl + r
|
||||
bspc wm -r
|
||||
|
||||
# Focus
|
||||
super + h
|
||||
bspc node -f west
|
||||
|
||||
super + j
|
||||
bspc node -f south
|
||||
|
||||
super + k
|
||||
bspc node -f north
|
||||
|
||||
super + l
|
||||
bspc node -f east
|
||||
|
||||
# Shift
|
||||
super + shift + h
|
||||
bspc node -s west
|
||||
|
||||
super + shift + j
|
||||
bspc node -s south
|
||||
|
||||
super + shift + k
|
||||
bspc node -s north
|
||||
|
||||
super + shift + l
|
||||
bspc node -s east
|
||||
|
||||
# Split focused frame
|
||||
super + y
|
||||
bspc node -p west
|
||||
super + u
|
||||
bspc node -p south
|
||||
super + i
|
||||
bspc node -p north
|
||||
super + o
|
||||
bspc node -p east
|
||||
|
||||
# Resize
|
||||
super + ctrl + {h,j,k,l}
|
||||
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
|
||||
|
||||
# Cycle layouts
|
||||
super + Tab
|
||||
bspc desktop -l next
|
||||
|
||||
# Window attributes
|
||||
super + ctrl + e
|
||||
bspc node -t floating
|
||||
super + ctrl + w
|
||||
bspc node -t fullscreen
|
||||
super + ctrl + q
|
||||
bspc node -t tiled
|
||||
|
||||
# Media keys
|
||||
XF86AudioMute
|
||||
pulsemixer --toggle-mute
|
||||
XF86AudioLowerVolume
|
||||
pulsemixer --change-volume -5
|
||||
XF86AudioRaiseVolume
|
||||
pulsemixer --change-volume +5
|
||||
XF86MonBrightnessDown
|
||||
light -U 5
|
||||
XF86MonBrightnessUp
|
||||
light -A 5
|
||||
|
||||
# Mouse
|
||||
super + button1
|
||||
bspc node -s west
|
||||
super + button2
|
||||
bspc node -p
|
||||
super + button3
|
||||
bspc node -s east
|
||||
|
||||
# Application launchers
|
||||
super + Return
|
||||
kitty
|
||||
|
||||
super + space
|
||||
rofi -show run
|
||||
|
||||
super + grave
|
||||
flameshot gui
|
||||
|
||||
super + 1
|
||||
nemo
|
||||
|
||||
super + 2
|
||||
brave
|
||||
|
||||
super + 3
|
||||
rofi -show calc
|
||||
|
||||
super + 4
|
||||
kitty -e nmcpcpp
|
||||
|
||||
super + 0
|
||||
i3lock
|
||||
|
||||
Reference in New Issue
Block a user