A webmail client. Forked from https://git.sr.ht/~migadu/alps
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

14 wiersze
331 B

  1. #!/bin/sh
  2. # Watch themes and plugins files, automatically reload alps on change.
  3. events=modify,create,delete,move
  4. targets="themes/ plugins/"
  5. inotifywait -e "$events" -m -r $targets | while read line; do
  6. jobs >/dev/null # Reap status of any terminated job
  7. if [ -z "$(jobs)" ]; then
  8. (sleep 0.5 && pkill -USR1 alps) &
  9. fi
  10. done