summaryrefslogtreecommitdiff
path: root/.config/sxhkd
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-12-05 13:34:46 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-12-05 13:34:46 -0500
commit5849e2ad7323f086bd6edf221b29e3f0b2b7cbd3 (patch)
treebb437c98f3661b5a3ac9d721dadd2c7b6e629692 /.config/sxhkd
parent6e5c51a6ee731e17e81cc5e23867dbd4ddc006e0 (diff)
Removed Useless Configs
Diffstat (limited to '.config/sxhkd')
-rwxr-xr-x.config/sxhkd/sxhkdrc199
1 files changed, 0 insertions, 199 deletions
diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc
deleted file mode 100755
index 449e373..0000000
--- a/.config/sxhkd/sxhkdrc
+++ /dev/null
@@ -1,199 +0,0 @@
-# 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