Skip to content

Instantly share code, notes, and snippets.

@EnricoVogt
Last active October 10, 2016 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EnricoVogt/7a22fb72daa953ecea2bdf00f88e6f20 to your computer and use it in GitHub Desktop.
Save EnricoVogt/7a22fb72daa953ecea2bdf00f88e6f20 to your computer and use it in GitHub Desktop.
#!/bin/bash
WM_CLASS="nautilus.Nautilus"
PROGNAME="nautilus"
if [ `wmctrl -lx | grep -c "$WM_CLASS"` != 0 ]
then
wmctrl -x -a "$WM_CLASS" # If it exists, bring t-bird window to front
else
$PROGNAME
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment