Skip to content

Instantly share code, notes, and snippets.

@nitanshu
Last active July 18, 2017 07:42
Show Gist options
  • Save nitanshu/c6ce9d3325211b507e9f3128841de928 to your computer and use it in GitHub Desktop.
Save nitanshu/c6ce9d3325211b507e9f3128841de928 to your computer and use it in GitHub Desktop.
It will switch your workspace after 5 seconds
# If your system does not have xdotool please install it
# sudo apt-get install xdotool
# copy this file to /bin folder
# cd /bin
# sh workspaces.sh
while true
do xdotool key ctrl+alt+Right
sleep 5
xdotool key ctrl+alt+Down
sleep 5
xdotool key ctrl+alt+Left
sleep 5
xdotool key ctrl+alt+Up
sleep 5
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment