voyeg3r

crontab

Sep 27th, 2022 (edited)
1,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.69 KB | None | 0 0
  1. # crontab -e
  2. # https://pastebin.com/Jn36y4sW
  3. # script to check battery: https://pastebin.com/E9efpJtx
  4. # >/dev/null 2>&1 <- used to preven sending e-mail's
  5. # in order to get your DISPLAY run the command below
  6. # env | grep -i display
  7. # If you do not set this variable feh will not change your wallpaper
  8. # source: https://superuser.com/a/1122245/45032
  9. DISPLAY=':0'
  10. SHELL=/bin/sh
  11. HOME=/home/sergio
  12. PATH=/sbin:/bin:/usr/sbin:/usr/bin:$HOME/.local/bin
  13. MAILTO=""
  14. HOME=/home/sergio
  15.  
  16. */5 * * * * /home/sergio/.local/bin/wal -qi /home/sergio/.dotfiles/backgrounds >/dev/null 2>&1
  17. * */1 * * * /bin/newsboat -x reload  # reload hourly
  18. * * * * *  /home/sergio/.dotfiles/bin/checkbattery.sh >/dev/null
  19.  
Advertisement
Add Comment
Please, Sign In to add comment