Added clipboard and pass password manager
Added volume control Added mpc notify key binding
This commit is contained in:
@@ -4,47 +4,43 @@
|
|||||||
|
|
||||||
# restart bspwm
|
# restart bspwm
|
||||||
super + alt + Escape
|
super + alt + Escape
|
||||||
bspc quit
|
bspc quit
|
||||||
|
|
||||||
# close window
|
# close window
|
||||||
alt + w
|
alt + w
|
||||||
bspc node -c
|
bspc node -c
|
||||||
|
|
||||||
# switch window state to floating or fullscreen
|
# switch window state to floating or fullscreen
|
||||||
super + {s,f}
|
super + {s,f}
|
||||||
bspc node -t {'~floating','~fullscreen'}
|
bspc node -t {'~floating','~fullscreen'}
|
||||||
|
|
||||||
# switch window state to tiling or monocle
|
# switch window state to tiling or monocle
|
||||||
super + m
|
super + m
|
||||||
bspc desktop -l next
|
bspc desktop -l next
|
||||||
|
|
||||||
# send active window to preselect
|
# send active window to preselect
|
||||||
alt + y
|
alt + y
|
||||||
bspc node -n last.!automatic
|
bspc node -n last.!automatic
|
||||||
|
|
||||||
# move active window
|
# move active window
|
||||||
alt + {_,shift + }{h,j,k,l}
|
alt + {_,shift + }{h,j,k,l}
|
||||||
bspc node -{f,s} {west,south,north,east}
|
bspc node -{f,s} {west,south,north,east}
|
||||||
|
|
||||||
# rotate window position
|
# rotate window position
|
||||||
super + {comma,period}
|
super + {comma,period}
|
||||||
bspc desktop -C {backward,forward}
|
bspc node @/ --rotate {90,-90}
|
||||||
|
|
||||||
# Mirror and flip leaves of tree
|
# Mirror and flip leaves of tree
|
||||||
alt + {comma,period}
|
alt + {comma,period}
|
||||||
bspc node @/ -F {horizontal,vertical}
|
bspc node @/ -F {horizontal,vertical}
|
||||||
|
|
||||||
# Rotate leaves of tree
|
|
||||||
alt + shift + {period,comma}
|
|
||||||
bspc node @/ -R {90,270}
|
|
||||||
|
|
||||||
# switch workspace on desktop
|
# switch workspace on desktop
|
||||||
alt + bracket{left,right}
|
alt + bracket{left,right}
|
||||||
bspc desktop -f {prev,next}
|
bspc desktop -f {prev,next}
|
||||||
|
|
||||||
# preselection
|
# preselection
|
||||||
alt + ctrl + {h,j,k,l}
|
alt + ctrl + {h,j,k,l}
|
||||||
bspc node -p {'~west','~south','~north','~east'}
|
bspc node -p {'~west','~south','~north','~east'}
|
||||||
|
|
||||||
# expand a window by moving one of its side outward
|
# expand a window by moving one of its side outward
|
||||||
super + {h,j,k,l}
|
super + {h,j,k,l}
|
||||||
@@ -56,7 +52,7 @@ super + shift + {h,j,k,l}
|
|||||||
|
|
||||||
# send active window to desktop
|
# send active window to desktop
|
||||||
super + {_,shift + }{1-9,0}
|
super + {_,shift + }{1-9,0}
|
||||||
bspc {desktop -f,node -d} ^{1-9,10}
|
bspc {desktop -f,node -d} ^{1-9,10}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# wm independent hotkeys
|
# wm independent hotkeys
|
||||||
@@ -64,23 +60,29 @@ super + {_,shift + }{1-9,0}
|
|||||||
|
|
||||||
# urxvt terminal
|
# urxvt terminal
|
||||||
alt + Return
|
alt + Return
|
||||||
urxvtc
|
urxvtc
|
||||||
|
|
||||||
# application launcher
|
# application launcher
|
||||||
super + space
|
super + space
|
||||||
dmenu_run -fn "-misc-tamlin-medium-r-normal--16-116-100-100-c-80-iso10646-1" -nb "#000000" -sb "#517ba2"
|
dmenu_run -fn "-misc-tamlin-medium-r-normal--16-116-100-100-c-80-iso10646-1" -nb "#000000" -sb "#517ba2"
|
||||||
|
|
||||||
# mpd next track
|
# clipboard manager
|
||||||
alt + n
|
super + c
|
||||||
mpc -h 192.168.0.1 next
|
clipmenu -fn "-misc-tamlin-medium-r-normal--16-116-100-100-c-80-iso10646-1" -nb "#000000" -sb "#517ba2"
|
||||||
|
|
||||||
# mpd previous track
|
super + shift + c
|
||||||
alt + p
|
clearclip
|
||||||
mpc -h 192.168.0.1 prev
|
|
||||||
|
|
||||||
# play / pause mpd
|
# password manager
|
||||||
alt + s
|
super + p
|
||||||
mpc -h 192.168.0.1 toggle
|
passmenu -fn "-misc-tamlin-medium-r-normal--16-116-100-100-c-80-iso10646-1" -nb "#000000" -sb "#517ba2"
|
||||||
|
|
||||||
|
# media controls
|
||||||
|
alt + {n,p,s}
|
||||||
|
mpc --host=slainsmpdserver@shadowblade.lan --port 6600 {next,prev,toggle}
|
||||||
|
|
||||||
|
XF86Audio{Next,Prev,Play}
|
||||||
|
mpc --host=slainsmpdserver@shadowblade.lan --port 6600 {next,prev,toggle}
|
||||||
|
|
||||||
# file manager
|
# file manager
|
||||||
alt + BackSpace
|
alt + BackSpace
|
||||||
@@ -94,6 +96,10 @@ alt + shift + b
|
|||||||
alt + shift + x
|
alt + shift + x
|
||||||
steam
|
steam
|
||||||
|
|
||||||
|
# notification for current song from mpd
|
||||||
|
alt + i
|
||||||
|
mpdnotify
|
||||||
|
|
||||||
# lock screen
|
# lock screen
|
||||||
ctrl + super + l
|
ctrl + super + l
|
||||||
dm-tool switch-to-greeter
|
dm-tool switch-to-greeter
|
||||||
@@ -102,17 +108,9 @@ ctrl + super + l
|
|||||||
ctrl + super + m
|
ctrl + super + m
|
||||||
blankmonitor
|
blankmonitor
|
||||||
|
|
||||||
# put rocket legue over both monitors
|
# volume control
|
||||||
alt + c
|
XF86Audio{Raise,Lower}Volume
|
||||||
xdotool search --name "Rocket League" windowactivate windowmove 0 0
|
pamixer {-i5,-d5}
|
||||||
|
|
||||||
# increase master volume
|
|
||||||
alt + i
|
|
||||||
pamixer -i 5
|
|
||||||
|
|
||||||
# decrease master volume
|
|
||||||
alt + u
|
|
||||||
pamixer -d 5
|
|
||||||
|
|
||||||
# mute toggle
|
# mute toggle
|
||||||
alt + m
|
alt + m
|
||||||
@@ -120,4 +118,4 @@ alt + m
|
|||||||
|
|
||||||
# make sxhkd reload its configuration files:
|
# make sxhkd reload its configuration files:
|
||||||
super + Escape
|
super + Escape
|
||||||
pkill -USR1 -x sxhkd
|
pkill -USR1 -x sxhkd
|
||||||
|
|||||||
Reference in New Issue
Block a user