summaryrefslogtreecommitdiff
path: root/.config/sxhkd
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@simplelittledream.com>2022-10-26 11:10:13 -0400
committerJacob McDonnell <jacob@simplelittledream.com>2022-10-26 11:10:13 -0400
commit6b6e91707ecf621a0bedad154351db8f1ccc2123 (patch)
treee0bed306b683c344e3f429817b1ef04daba1c2f6 /.config/sxhkd
parent161a1bfb0b3e75e9f5241cd7dd8aafec455a67d5 (diff)
Working on merging to one branch
Diffstat (limited to '.config/sxhkd')
-rwxr-xr-x.config/sxhkd/sxhkdrc199
1 files changed, 199 insertions, 0 deletions
diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc
new file mode 100755
index 0000000..449e373
--- /dev/null
+++ b/.config/sxhkd/sxhkdrc
@@ -0,0 +1,199 @@
+# Polybar Scripts
+
+# Reload Weather and Coronacounter
+super + r
+ coronacounter getStats ; weather getforecast ; killall reloadPolybar ; reloadPolybar
+
+# Take A Break Script
+super + w
+ takeABreak
+# WM INDEPENDENT KEYBINDING
+
+# Lower Volume
+XF86AudioLowerVolume
+ pamixer -d 5 ; killall reloadPolybar ; reloadPolybar
+
+# Mute
+XF86AudioMute
+ pamixer -t ; killall reloadPolybar ; reloadPolybar
+
+# Raise Volume
+XF86AudioRaiseVolume
+ pamixer -i 5 ; killall reloadPolybar ; reloadPolybar
+
+# Lower Brightness
+XF86MonBrightnessDown
+ brightness -dec
+
+# Raise Brightness
+XF86MonBrightnessUp
+ brightness -inc
+
+# Run slock
+super + ctrl + shift + l
+ slock
+
+# make sxhkd reload its configuration files:
+super + Escape
+ pkill -USR1 -x sxhkd
+
+# shutdown
+super + shift + ctrl + s
+ shutdownPrompt
+
+# Reboot
+super + shift + ctrl + r
+ rebootPrompt
+
+# BSPWM HOTKEYS
+
+# quit/restart bspwm
+super + shift + {q,r}
+ {prompt "EXIT BSPWM" "bspc quit", bspc wm -r}
+
+# close and kill
+super + shift + c
+ bspc node -c
+
+# alternate between the tiled and monocle layout
+super + m
+ bspc desktop -l next
+
+# send the newest marked node to the newest preselected node
+super + y
+ bspc node newest.marked.local -n newest.!automatic.local
+
+# swap the current node and the biggest node
+super + g
+ bspc node -s biggest
+
+
+# STATE/FLAGS
+
+# set the window state
+super + {t,shift + t,s,f}
+ bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
+
+# set the node flags
+super + ctrl + {m,x,y,z}
+ bspc node -g {marked,locked,sticky,private}
+
+
+# FOCUS/SWAP
+
+# focus the node in the given direction
+super + {_,shift + }{h,j,k,l}
+ bspc node -{f,s} {west,south,north,east}
+
+# focus the node for the given path jump
+super + {p,b,comma,period}
+ bspc node -f @{parent,brother,first,second}
+
+# focus the next/previous node in the current desktop
+super + {_,shift + }n
+ bspc node -f {next,prev}.local
+
+# focus the next/previous desktop in the current monitor
+super + bracket{left,right}
+ bspc desktop -f {prev,next}.local
+
+# focus the last node/desktop
+super + {grave,Tab}
+ bspc {node,desktop} -f last
+
+# focus the older or newer node in the focus history
+super + {o,i}
+ bspc wm -h off; \
+ bspc node {older,newer} -f; \
+ bspc wm -h on
+
+# focus or send to the given desktop
+super + {_,shift + }{1-9,0}
+ bspc {desktop -f,node -d} focused:'^{1-9,10}'
+
+
+# PRESELECT
+
+# preselect the direction
+super + ctrl + {h,j,k,l}
+ bspc node -p {west,south,north,east}
+
+# preselect the ratio
+super + ctrl + {1-9}
+ bspc node -o 0.{1-9}
+
+# cancel the preselection for the focused node
+super + ctrl + space
+ bspc node -p cancel
+
+# cancel the preselection for the focused desktop
+super + ctrl + shift + space
+ bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
+
+
+# MOVE/RESIZE
+
+# expand a window by moving one of its side outward
+ctrl + alt + {h,j,k,l}
+ bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
+
+# contract a window by moving one of its side inward
+ctrl + alt + shift + {h,j,k,l}
+ bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
+
+# move a floating window
+super + {Left,Down,Up,Right}
+ bspc node -v {-20 0,0 20,0 -20,20 0}
+
+
+# APPLICATION KEYBINDINGS (Super + Alt + Key)
+
+# terminal emulator
+super + Return
+ $TERMINAL
+
+# launch browser
+super + alt + b
+ $BROWSER
+
+# launch newsboat feed reeder
+super + alt + n
+ $TERMINAL -e newsboat
+
+# launch htop
+super + alt + h
+ $TERMINAL -e htop
+
+# launch File Manager
+super + alt + f
+ $TERMINAL -e $FILE
+
+# launch vim
+super + alt + v
+ $TERMINAL -e vim
+
+# launch Syncterm
+super + alt + s
+ syncterm
+
+# launch bc
+super + alt + c
+ $TERMINAL -e bc
+
+# launch ncmpcpp
+super + alt + m
+ $TERMINAL -e ncmpcpp
+
+# launch acme
+super + alt + a
+ acme
+
+# launch openBook command
+super + alt + o
+ openBook
+
+# DMENU SCRIPTS (Alt+Ctrl+Key)
+
+# run program launcher
+super + alt + space
+ dmenu_run