Skip to content

Instantly share code, notes, and snippets.

@asutherland
Last active August 29, 2015 14:17
Show Gist options
  • Save asutherland/4a4d2bd1dc4c0e0ad262 to your computer and use it in GitHub Desktop.
Save asutherland/4a4d2bd1dc4c0e0ad262 to your computer and use it in GitHub Desktop.
xdotool window hotkey bookmarking

Two shell scripts to bookmark and restore bookmarks for windows. Based on exact window id's.

You then use these in your desktop environment's global keybindings. For example I have bound:

  • Alt-Super-1 to "bookmark-window-as 1"
  • Super-1 to "bookmark-activate-window 1" And so on for all digits. You could also use letters or whatever you want.

Note that if you don't want bookmarking and instead just want Super-F to always bring up your Firefox window, you want to do things like directly invoke "xdotool search --class firefox windowactivate" (which is literally an example I just ripped from "man xdotool").

#!/bin/sh
WIN=`cat ~/.wmbookmarks/$1`
# activate the window and center the mouse over the window
xdotool windowactivate $WIN mousemove --window $WIN --polar 0 0
#!/bin/sh
xdotool getactivewindow > ~/.wmbookmarks/$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment