diff options
author | Simon Ser <contact@emersion.fr> | 2020-05-13 14:07:44 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-13 14:07:44 +0200 |
commit | b891a95fcf4a3d4b64100911dae49fb28904a7fd (patch) | |
tree | fe07b29d6f2443047b7f740c79d86b3c499cc9e9 /contrib | |
parent | 4cf5ad68afd80f27512c464843b0d917182ef0c2 (diff) | |
download | alps-b891a95fcf4a3d4b64100911dae49fb28904a7fd.tar.gz alps-b891a95fcf4a3d4b64100911dae49fb28904a7fd.zip |
Rename project to alps
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/hotreload.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/hotreload.sh b/contrib/hotreload.sh index afe53ba..afb61ac 100755 --- a/contrib/hotreload.sh +++ b/contrib/hotreload.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Watch themes and plugins files, automatically reload koushin on change. +# Watch themes and plugins files, automatically reload alps on change. events=modify,create,delete,move targets="themes/ plugins/" @@ -8,6 +8,6 @@ targets="themes/ plugins/" inotifywait -e "$events" -m -r $targets | while read line; do jobs >/dev/null # Reap status of any terminated job if [ -z "$(jobs)" ]; then - (sleep 0.5 && pkill -USR1 koushin) & + (sleep 0.5 && pkill -USR1 alps) & fi done |