sped up hover via tmp files for xrandr
This commit is contained in:
parent
fe0b64db24
commit
ef0fcbe662
@ -7,6 +7,9 @@
|
|||||||
#automatically scale HD screens to better work with hidpi
|
#automatically scale HD screens to better work with hidpi
|
||||||
scale_factor_HD=1.6
|
scale_factor_HD=1.6
|
||||||
|
|
||||||
|
#fixes issue that script gets called twice for some reason
|
||||||
|
[ "$(pgrep -c displayselect)" -gt 1 ] && exit
|
||||||
|
|
||||||
twoscreen() { # If multi-monitor is selected and there are two screens.
|
twoscreen() { # If multi-monitor is selected and there are two screens.
|
||||||
|
|
||||||
mirror=$(printf "no\\nyes" | dmenu -i -p "Mirror displays?")
|
mirror=$(printf "no\\nyes" | dmenu -i -p "Mirror displays?")
|
||||||
|
@ -2,9 +2,16 @@
|
|||||||
|
|
||||||
[ -z "$1" ] && exit # If $1 is left, hovers in the bottom left, if right, the bottom right
|
[ -z "$1" ] && exit # If $1 is left, hovers in the bottom left, if right, the bottom right
|
||||||
current=$(xdotool getwindowfocus)
|
current=$(xdotool getwindowfocus)
|
||||||
dims="$(xrandr --screen 0 | grep ' connected' | grep -v '^\s*$' | sed 's/ primary//' | cut -d ' ' -f3)"
|
|
||||||
|
# xrandr is quite slow in execution. displayselect will generate a new one in postrun.
|
||||||
|
# Otherwise if none exist this script will run xrandr once
|
||||||
|
if [ -f /tmp/dims ]; then
|
||||||
|
dims="$(cat /tmp/dims)"
|
||||||
|
else
|
||||||
|
dims="$(xrandr --screen 0 | grep ' connected' | grep -v '^\s*$' | sed 's/ primary//' | cut -d ' ' -f3 | tee -i '/tmp/dims')"
|
||||||
|
fi
|
||||||
horizontal_offset="$( echo "$dims" | cut -d '+' -f2 )"
|
horizontal_offset="$( echo "$dims" | cut -d '+' -f2 )"
|
||||||
mouse_location_horizontal="$(xdotool getmouselocation | grep -Po 'x:\d{1,5}' | tr -d 'x:')"
|
mouse_location_horizontal="$(xdotool getmouselocation | grep -Eo 'x:[0-9]{1,5}' | tr -d 'x:')"
|
||||||
# var passed is an accumulator for screens that fit the current mouse location or less
|
# var passed is an accumulator for screens that fit the current mouse location or less
|
||||||
for screen in $horizontal_offset; do
|
for screen in $horizontal_offset; do
|
||||||
[ "$screen" -lt "$mouse_location_horizontal" ] && passed="$(printf '%s\n%s\n' "$passed" "$screen")"
|
[ "$screen" -lt "$mouse_location_horizontal" ] && passed="$(printf '%s\n%s\n' "$passed" "$screen")"
|
||||||
|
Loading…
Reference in New Issue
Block a user