Skip to content

Instantly share code, notes, and snippets.

@mattbell87
Last active January 2, 2017 04:40
Show Gist options
  • Save mattbell87/243caa6465e093680b76 to your computer and use it in GitHub Desktop.
Save mattbell87/243caa6465e093680b76 to your computer and use it in GitHub Desktop.
Bring an app to the foreground on the primary display. Requires xdotool.
#!/bin/bash
export DISPLAY=:0
APP=$1
echo Switching to $APP
xdotool search --class "$APP" windowactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment