2015-05-29 20:55:01 +02:00
|
|
|
# Config
|
|
|
|
|
|
|
|
# Mute
|
|
|
|
XF86AudioMute
|
|
|
|
~/.config/scripts/volume.sh mute
|
|
|
|
|
|
|
|
# Volume
|
|
|
|
XF86AudioRaiseVolume
|
|
|
|
~/.config/scripts/volume.sh +
|
|
|
|
|
|
|
|
XF86AudioLowerVolume
|
|
|
|
~/.config/scripts/volume.sh -
|
|
|
|
|
|
|
|
# Switch Monitor assigned to Tablet
|
|
|
|
XF86Tools
|
|
|
|
~/.config/scripts/maptooutput.sh
|
|
|
|
|
|
|
|
# Lock
|
|
|
|
super + l
|
|
|
|
~/.config/scripts/lock.sh
|
|
|
|
|
|
|
|
XF86ScreenSaver
|
|
|
|
~/.config/scripts/lock.sh
|
|
|
|
|
|
|
|
# Quit Bspwm
|
|
|
|
super + shift + q
|
|
|
|
bspc quit
|
|
|
|
|
|
|
|
# Tabbing through current windows
|
|
|
|
super + Tab
|
|
|
|
bspc window -f next
|
|
|
|
|
|
|
|
# Open Terminal
|
2015-06-08 12:52:42 +02:00
|
|
|
super + alt + Return
|
2015-05-29 20:55:01 +02:00
|
|
|
urxvt
|
|
|
|
|
2015-06-08 12:52:42 +02:00
|
|
|
super + Return
|
|
|
|
urxvt -e /home/madmaurice/.config/scripts/tmuxn.sh
|
|
|
|
|
2015-05-29 20:55:01 +02:00
|
|
|
# Open File manager
|
|
|
|
super + alt + e
|
|
|
|
urxvt -e "ranger"
|
|
|
|
|
|
|
|
# Open dmenu file manager
|
|
|
|
super + e
|
|
|
|
~/.config/scripts/explorer_run.sh
|
|
|
|
|
|
|
|
# {Focus,Move} windows around
|
|
|
|
super + {_,shift +} {Left,Right,Up,Down}
|
|
|
|
bspc window -{f,s} {left,right,up,down}
|
|
|
|
|
|
|
|
#Create preselection
|
|
|
|
super + ctrl + {Left,Right,Up,Down}
|
|
|
|
bspc window -p {left,right,up,down}
|
|
|
|
|
|
|
|
#Insert into latest preselection
|
|
|
|
super + ctrl + i
|
2015-11-21 19:04:52 +01:00
|
|
|
bspc window -w last.!automatic
|
2015-05-29 20:55:01 +02:00
|
|
|
|
|
|
|
#Flip Desktop
|
|
|
|
super + ctrl + {h,v}
|
|
|
|
bspc desktop focused -F {horizontal,vertical}
|
|
|
|
|
|
|
|
#dmenu2
|
|
|
|
super + space
|
|
|
|
~/.config/scripts/dmenu_run.sh
|
|
|
|
|
|
|
|
#menu
|
|
|
|
super + alt + space
|
|
|
|
~/.config/scripts/cmenu.sh
|
|
|
|
|
|
|
|
#Cancel preselection
|
|
|
|
super + ctrl + Escape
|
|
|
|
bspc desktop -c
|
|
|
|
|
|
|
|
# Resize push
|
|
|
|
super + alt + {Left,Down,Up,Right}
|
|
|
|
bspc window -e {left -10, down +10, up -10, right +10}
|
|
|
|
|
|
|
|
# Resize pull
|
|
|
|
super + ctrl + alt + {Left,Down,Up,Right}
|
|
|
|
bspc window -e {right -10, up +10, down -10, left +10}
|
|
|
|
|
|
|
|
# Close Window
|
|
|
|
super + q
|
|
|
|
bspc window -c
|
|
|
|
|
|
|
|
# Rotate Desktop
|
|
|
|
super + shift + r
|
|
|
|
bspc desktop -R 90
|
|
|
|
|
2015-11-21 19:04:52 +01:00
|
|
|
# Maximize and float
|
|
|
|
super + {m,f}
|
|
|
|
state={fullscreen,floating}; \
|
|
|
|
bspc query -W -w "focused.$\{state\}" && state=tiled; \
|
|
|
|
bspc window -t "$state"
|
2015-05-29 20:55:01 +02:00
|
|
|
|
|
|
|
# Direct access and move windows to desktop
|
|
|
|
super + {_,shift +}{1-9}
|
|
|
|
bspc {desktop -f,window -d} $(bspc query -M -m):^{1-9}
|
|
|
|
|
|
|
|
# move windows
|
|
|
|
super + button{1,3}
|
|
|
|
bspc pointer -g {move,resize_corner}
|
|
|
|
|
|
|
|
super + !button{1,3}
|
|
|
|
bspc pointer -t %i %i
|
|
|
|
|
|
|
|
super + @button{1,3}
|
|
|
|
bspc pointer -u
|
|
|
|
|
|
|
|
# toggle visibility
|
|
|
|
super + d
|
|
|
|
bspc control --toggle-visibility
|
|
|
|
|
|
|
|
# monitor switch
|
|
|
|
XF86Display
|
2015-08-30 12:10:17 +02:00
|
|
|
~/.config/scripts/monsetup_menu.sh
|
2015-05-29 20:55:01 +02:00
|
|
|
|
|
|
|
XF86AudioPlay
|
|
|
|
mpc toggle
|
|
|
|
|
|
|
|
XF86AudioNext
|
|
|
|
mpc next
|
|
|
|
|
|
|
|
XF86AudioPrev
|
|
|
|
mpc prev
|