Skip to content

Instantly share code, notes, and snippets.

@Bueddl
Created October 28, 2016 22:25
Show Gist options
  • Save Bueddl/0274bf7aaeba9b47f0a3fb11dac07783 to your computer and use it in GitHub Desktop.
Save Bueddl/0274bf7aaeba9b47f0a3fb11dac07783 to your computer and use it in GitHub Desktop.
Never give you up
#include <unistd.h>
#include <stdlib.h>
int main()
{
char *args[] = {
"xdg-open",
"https://www.youtube.com/watch?v=DLzxrzFCyOs",
NULL
};
if (getenv("DISPLAY"))
execvp(args[0], args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment