Skip to content

Instantly share code, notes, and snippets.

@mattbell87
Last active December 21, 2015 07:12
Show Gist options
  • Save mattbell87/5174570e0d34c0ccba68 to your computer and use it in GitHub Desktop.
Save mattbell87/5174570e0d34c0ccba68 to your computer and use it in GitHub Desktop.
Start a GUI app on the primary display
#!/bin/bash
export DISPLAY=:0
APP=$1
shift
echo Starting $APP "$@"
nohup $APP "$@" >&/dev/null &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment