27 lines
445 B
Bash
Executable File
27 lines
445 B
Bash
Executable File
#!/bin/bash
|
|
focusWindowUnderMouse () {
|
|
xdotool windowactivate $(xdotool getmouselocation|sed "s/.*://")
|
|
}
|
|
case $1 in
|
|
1)
|
|
#xdotool mousemove 800 400 # top left of ultrawide display
|
|
xdotool mousemove 2080 2160 #15khz crt
|
|
focusWindowUnderMouse
|
|
;;
|
|
2)
|
|
xdotool mousemove 2650 500
|
|
focusWindowUnderMouse
|
|
;;
|
|
3)
|
|
xdotool mousemove 800 1600
|
|
focusWindowUnderMouse
|
|
;;
|
|
4)
|
|
#xdotool mousemove 2560 1600
|
|
xdotool mousemove 2180 1300
|
|
focusWindowUnderMouse
|
|
;;
|
|
esac
|
|
|
|
|