A webmail client. Forked from https://git.sr.ht/~migadu/alps
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

14 righe
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