Sfoglia il codice sorgente

only sync if user logged in

tags/v3.1
Luke Smith 7 anni fa
parent
commit
be2c4c5baa
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4C50B54A911F6252
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      bin/mailsync

+ 3
- 0
bin/mailsync Vedi File

@@ -1,6 +1,9 @@
#!/usr/bin/env sh #!/usr/bin/env sh
# Sync mail and give notification if there is new mail. # Sync mail and give notification if there is new mail.


# Run only if user logged in (prevent cron errors)
w | grep "^$USER\W" >/dev/null || exit

# Checks for internet connection and set notification script. # Checks for internet connection and set notification script.
ping -q -c 1 1.1.1.1 > /dev/null || exit ping -q -c 1 1.1.1.1 > /dev/null || exit
command -v notify-send >/dev/null || echo "Note that \`libnotify\` or \`libnotify-send\` should be installed for pop-up mail notifications with this script." command -v notify-send >/dev/null || echo "Note that \`libnotify\` or \`libnotify-send\` should be installed for pop-up mail notifications with this script."


Caricamento…
Annulla
Salva