dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

unsleep (219B)


      1 #!/bin/sh
      2 while :; do
      3   oldloc="$(xdotool getmouselocation)"
      4   sleep 10
      5   if [ "$(xdotool getmouselocation)" = "$oldloc" ]; then
      6     xdotool mousemove_relative --sync -- -100 0 mousemove_relative --sync 100 0
      7   fi
      8 done