2024-11-27 21:41:48 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
# inotifywait -q -e MOVE_SELF *less
|
|
|
|
inotifywait -q -e MODIFY *less
|
|
|
|
#sleep 0.5
|
|
|
|
clear
|
2024-11-28 18:11:14 +01:00
|
|
|
if make -j12; then
|
|
|
|
echo -e "\n\e[32;1mOK!\e[0m"
|
|
|
|
curl -s http://notes.lan:1371/css_updated
|
|
|
|
sleep 1
|
|
|
|
clear
|
|
|
|
fi
|
2024-11-27 21:41:48 +01:00
|
|
|
done
|