diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index c3d5195a..16e76245 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -20,8 +20,11 @@ bspc monitor HDMI-0 -d 1 2 3 4 5 6 7 8 9 10 bspc config automatic_scheme alternate bspc config initial_polarity second_child bspc config pointer_modifier shift +# hold shift + mouse left btn to move window bspc config pointer_action1 move +# hold shift + mouse middle btn to resize a side of window bspc config pointer_action2 resize_side +# hold shift + mouse right btn to resize a side/corner of window bspc config pointer_action3 resize_corner bspc config click_to_focus none bspc config focus_follows_pointer true bspc config remove_disabled_monitors true diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index 5a570d61..17af53b0 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -28,6 +28,10 @@ super + shift + Escape super + shift + r bspc wm -r +# Reload sxhkdrc +super + shift + j + pkill -usr1 -x sxhkd; notify-send 'sxhkd' 'Reloaded config' + # toggle floating on and off super + o bspc node focused.tiled -t floating || bspc node focused.floating -t tiled @@ -213,3 +217,5 @@ super + BackSpace # Switch focus between the windows of the current desktop super + {_,shift + } Tab bspc node -f {next,prev}.local + +