Skip to content

Instantly share code, notes, and snippets.

@rhoconlinux
Created May 29, 2015 16:12
Show Gist options
  • Select an option

  • Save rhoconlinux/9e6f8fde49d5287ae7ce to your computer and use it in GitHub Desktop.

Select an option

Save rhoconlinux/9e6f8fde49d5287ae7ce to your computer and use it in GitHub Desktop.
Deamon para reiniciar gnome-shell
#!/bin/bash
while true ;do
if [ -f .delete-to-reload-gnome-shell ] ;then
sleep 1;
else
touch ~/.delete-to-reload-gnome-shell;
gnome-shell --replace ;
fi
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment