Skip to content

Instantly share code, notes, and snippets.

@beothorn
Created May 30, 2011 17:30
Show Gist options
  • Save beothorn/999190 to your computer and use it in GitHub Desktop.
Save beothorn/999190 to your computer and use it in GitHub Desktop.
Toogle compiz on off
#!/bin/sh
if pidof compiz; then
metacity --replace&
else
compiz --replace&
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment