#! /bin/zsh # # this file: # https://dataswamp.org/~incal/conf/.zsh/x-mouse # # $ startx -- -nocursor unclutter-on () { DISPLAY=":1" unclutter -idle 0 > /dev/null 2>&1 & } unclutter-off () { pkill unclutter } hide-mouse () { DISPLAY=":1" xdotool mousemove 640 480 } alias hm=hide-mouse