Advertisement
GuessGen

Reminder Bash Script by GuessGen

Mar 6th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ $1 ]
  4. then
  5.     while true
  6.     do
  7.         sleep $1
  8.         #Stergeti "-i $HOME/Desktop/tux.png"
  9.         #Sau nu in caz ca aveti o poza tux.png pe Desktop
  10.         notify-send -i $HOME/Desktop/tux.png "Eu sunt Tux"
  11.         mpg123 -q Attention.mp3 &
  12.     done
  13. else
  14.     echo "./reminder.sh [secunde]"
  15. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement