Skip to content

Instantly share code, notes, and snippets.

Created June 5, 2013 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/5713887 to your computer and use it in GitHub Desktop.
Save anonymous/5713887 to your computer and use it in GitHub Desktop.
Download and run this script inside the folder CompaassApp/packages/linux. This script will move compass.app folder to your home and create a .desktop shortcut for accessing compass from your unity dash.
mv compass.app ~/.compass.app;
{ echo [Desktop Entry];
echo Type=Application;
echo Name=Compass.App;
echo Comment=Compass.App compiles SASS to css;
echo Icon=$HOME/.compass.app/lib/images/icon/512.png
echo Exec=.compass.app/run.sh;
echo Terminal=false;
echo Categories=Development\;;
echo StartupWMClass=Compass; } >> ~/.local/share/applications/CompassApp.desktop;
chmod +x ~/.local/share/applications/CompassApp.desktop;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment