Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/bin/bash
  2. ### BEGIN INIT INFO
  3. # Provides: screenlogger
  4. # Required-Start: $local_fs $network
  5. # Required-Stop: $local_fs
  6. # Default-Start: 2 3 4 5
  7. # Default-Stop: 0 1 6
  8. # Short-Description: screenlogger
  9. # Description: screenlogger
  10. ### END INIT INFO
  11.  
  12. export SCREENLOGGER="$HOME/.bin/screenlogger.sh"
  13.  
  14. if [ -e "$SCREENLOGGER" ]
  15. then
  16. $SCREENLOGGER
  17. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement