diff options
author | David Robillard <d@drobilla.net> | 2017-12-10 15:36:41 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-10 15:37:04 +0100 |
commit | 7b42907c9cd5d6404b463339de0f9a65f690e362 (patch) | |
tree | ca9fb9426eb882a2d54f19eef5c1e435aaf61304 /bspwm | |
parent | 198cf06723e4df2555b5a8c1223e86682c43d8d1 (diff) | |
download | dotfiles-7b42907c9cd5d6404b463339de0f9a65f690e362.tar.gz dotfiles-7b42907c9cd5d6404b463339de0f9a65f690e362.tar.bz2 dotfiles-7b42907c9cd5d6404b463339de0f9a65f690e362.zip |
Work around xdotool delay bug
Diffstat (limited to 'bspwm')
-rwxr-xr-x | bspwm/.config/bspwm/bspwmrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index f853c26..5ec4ed4 100755 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc @@ -24,7 +24,7 @@ xmodmap ~/.Xmodmap sxhkd & # Show panel when mouse is on top edge -xdotool behave_screen_edge --delay 250 --quiesce 250 top search --name "Top Expanded Edge Panel" windowmap exec "bspc config top_padding $PANEL_PAD" & +xdotool behave_screen_edge --delay 1000 top search --name "Top Expanded Edge Panel" windowmap exec bspc config top_padding $PANEL_PAD > /dev/null & # Hide panel when mouse is on bottom edge -xdotool behave_screen_edge --delay 250 --quiesce 250 bottom search --name "Top Expanded Edge Panel" windowunmap exec bspc config top_padding 0 & +xdotool behave_screen_edge --delay 1000 bottom search --name "Top Expanded Edge Panel" windowunmap exec bspc config top_padding 0 > /dev/null & |