Skip to content

Instantly share code, notes, and snippets.

@iberianpig
Last active April 17, 2016 03:49
Show Gist options
  • Save iberianpig/38a7dfe61b5dc59de7f855330b7c6ab4 to your computer and use it in GitHub Desktop.
Save iberianpig/38a7dfe61b5dc59de7f855330b7c6ab4 to your computer and use it in GitHub Desktop.
switch terminal and browser
#!/bin/bash
browser_title="Google Chrome"
terminal_title="byobu"
current_window_id=$(xdotool getwindowfocus)
browser_window_id=$(xdotool search --name --onlyvisible "$browser_title")
terminal_window_id=$(xdotool search --name --onlyvisible "$terminal_title")
if test $current_window_id -eq $browser_window_id
then
xdotool windowactivate $terminal_window_id
else
xdotool windowactivate $browser_window_id
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment