2017-08-23 00:50:25 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-01-19 12:54:19 -06:00
|
|
|
####################
|
|
|
|
# GENERAL HOTKEYS
|
|
|
|
####################
|
|
|
|
|
2018-01-17 22:06:46 -06:00
|
|
|
# Execute terminal
|
2017-08-23 00:50:25 -05:00
|
|
|
alt + Return
|
2018-02-12 23:53:21 -06:00
|
|
|
konsole
|
2017-08-23 00:50:25 -05:00
|
|
|
|
2018-05-06 01:42:36 -05:00
|
|
|
# Program launcher
|
|
|
|
alt + space
|
2018-05-18 12:59:15 -05:00
|
|
|
rofi -show
|
2018-05-06 01:42:36 -05:00
|
|
|
|
2018-07-30 13:11:11 -05:00
|
|
|
# Local VM program launcher
|
|
|
|
alt + d
|
|
|
|
ssh 192.168.200.2 -X rofi -show drun
|
|
|
|
|
2018-05-06 01:42:36 -05:00
|
|
|
# SSH browser
|
|
|
|
alt + backslash
|
|
|
|
rofi -show ssh
|
|
|
|
|
|
|
|
# Program switcher
|
|
|
|
alt + Tab
|
2018-05-18 01:37:53 -05:00
|
|
|
rofi -show window
|
2018-05-06 01:42:36 -05:00
|
|
|
|
2018-01-17 22:06:46 -06:00
|
|
|
# Reload SXHKD
|
2017-08-23 00:50:25 -05:00
|
|
|
alt + Escape
|
|
|
|
pkill -USR1 -x sxhkd
|
|
|
|
|
2018-07-14 17:59:06 -05:00
|
|
|
# tubetop Controls
|
2018-01-17 22:06:46 -06:00
|
|
|
alt + p
|
2018-07-14 17:59:06 -05:00
|
|
|
~/.local/bin/tubetop
|
2018-01-17 22:06:46 -06:00
|
|
|
alt + shift + p
|
|
|
|
pkill xwinwrap
|
|
|
|
|
2018-06-22 20:21:26 -05:00
|
|
|
# Conky toggling
|
|
|
|
alt + c
|
|
|
|
pgrep conky && killall conky || conky&
|
|
|
|
|
2018-05-06 01:42:36 -05:00
|
|
|
# Pulse controls
|
|
|
|
XF86Audio{Raise,Lower}Volume
|
|
|
|
pactl set-sink-volume 0 {+,-}5%
|
|
|
|
XF86AudioMute
|
|
|
|
pactl set-sink-mute 0 toggle
|
|
|
|
|
|
|
|
# Brightness controls
|
|
|
|
XF86MonBrightness(Up,Down)
|
|
|
|
xbacklight (-inc,-dec) 5
|
|
|
|
|
2018-01-19 12:54:19 -06:00
|
|
|
####################
|
|
|
|
# BSPWM HOTKEYS
|
|
|
|
####################
|
2017-08-23 00:50:25 -05:00
|
|
|
|
2018-01-17 22:23:37 -06:00
|
|
|
# Reload configuration
|
|
|
|
alt + shift + r
|
|
|
|
~/.config/bspwm/bspwmrc
|
|
|
|
|
2017-08-23 00:50:25 -05:00
|
|
|
# close and kill
|
|
|
|
alt + {_,shift + }q
|
|
|
|
bspc node -{c,k}
|
|
|
|
|
|
|
|
# alternate between the tiled and monocle layout
|
|
|
|
alt + m
|
|
|
|
bspc desktop -l next
|
|
|
|
|
|
|
|
# if the current node is automatic, send it to the last manual, otherwise pull the last leaf
|
|
|
|
alt + y
|
|
|
|
bspc query -N -n focused.automatic && bspc node -n last.!automatic || bspc node last.leaf -n focused
|
|
|
|
|
|
|
|
# swap the current node and the biggest node
|
|
|
|
alt + g
|
|
|
|
bspc node -s biggest
|
|
|
|
|
|
|
|
#
|
|
|
|
# state/flags
|
|
|
|
#
|
|
|
|
|
|
|
|
# set the window state
|
2018-01-17 22:06:46 -06:00
|
|
|
alt + {t,shift + t,f,shift + f}
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
|
|
|
|
|
|
|
# set the node flags
|
|
|
|
alt + ctrl + {x,y,z}
|
|
|
|
bspc node -g {locked,sticky,private}
|
|
|
|
|
|
|
|
#
|
|
|
|
# focus/swap
|
|
|
|
#
|
|
|
|
|
|
|
|
# focus the node in the given direction
|
|
|
|
alt + {_,shift + }{h,j,k,l}
|
|
|
|
bspc node -{f,s} {west,south,north,east}
|
2017-08-23 13:02:10 -05:00
|
|
|
alt + {_,shift + }{Left,Down,Up,Right}
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc node -{f,s} {west,south,north,east}
|
|
|
|
|
|
|
|
# focus the node for the given path jump
|
2018-08-01 18:20:31 -05:00
|
|
|
alt + {a,b}
|
|
|
|
bspc node -f @{parent,brother}
|
2017-08-23 00:50:25 -05:00
|
|
|
|
|
|
|
# focus the next/previous node in the current desktop
|
|
|
|
alt + {_,shift + }c
|
|
|
|
bspc node -f {next,prev}.local
|
|
|
|
|
|
|
|
# focus the next/previous desktop in the current monitor
|
2018-08-01 18:20:31 -05:00
|
|
|
alt + {comma,period}
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc desktop -f {prev,next}.local
|
|
|
|
|
|
|
|
# focus the last node/desktop
|
|
|
|
alt + {grave,Tab}
|
|
|
|
bspc {node,desktop} -f last
|
|
|
|
|
|
|
|
# focus the older or newer node in the focus history
|
|
|
|
alt + {o,i}
|
|
|
|
bspc wm -h off; \
|
|
|
|
bspc node {older,newer} -f; \
|
|
|
|
bspc wm -h on
|
|
|
|
|
|
|
|
# focus or send to the given desktop
|
|
|
|
alt + {_,shift + }{1-9,0}
|
2018-01-21 19:36:17 -06:00
|
|
|
bspc {desktop -f,node -d} '{1-9,10}'
|
2017-08-23 00:50:25 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# preselect
|
|
|
|
#
|
|
|
|
|
|
|
|
# preselect the direction
|
2017-08-23 13:02:10 -05:00
|
|
|
super + {h,j,k,l}
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc node -p {west,south,north,east}
|
|
|
|
|
|
|
|
# preselect the ratio
|
2018-01-19 12:54:19 -06:00
|
|
|
super + {1-9}
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc node -o 0.{1-9}
|
|
|
|
|
|
|
|
# cancel the preselection for the focused node
|
2018-01-19 12:54:19 -06:00
|
|
|
super + space
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc node -p cancel
|
|
|
|
|
|
|
|
# cancel the preselection for the focused desktop
|
2018-01-19 12:54:19 -06:00
|
|
|
ctrl + alt + space
|
2017-08-23 00:50:25 -05:00
|
|
|
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
|
2017-08-23 13:02:10 -05:00
|
|
|
super + alt + {h,j,k,l}
|
2017-08-23 00:50:25 -05:00
|
|
|
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
|
2017-08-23 13:02:10 -05:00
|
|
|
super + alt + shift + {h,j,k,l}
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
|
|
|
|
|
|
|
|
# move a floating window
|
|
|
|
alt + {Left,Down,Up,Right}
|
|
|
|
bspc node -v {-20 0,0 20,0 -20,20 0}
|