Created
June 22, 2011 07:44
-
-
Save StuMx/1039658 to your computer and use it in GitHub Desktop.
Apaga la pantlla y bloquea la maquina
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Necesita tener slock | |
echo " Apagando pantalla" | |
slock & | |
sleep 1 && xset dpms force off | |
proceso="pidof slock" | |
while $proceso | |
do | |
proceso="pidof slock" | |
if $proceso; then | |
xset dpms force off | |
sleep 5 | |
fi | |
done | |
echo "Volviste! :)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment