Remove handling for 'delete_self' event

This commit is contained in:
Kroese 2025-10-08 14:34:24 +02:00 committed by GitHub
parent dc4c93ce41
commit b6a93e30af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,5 @@ inotifywait -m "$path" |
while read -r fp event fn; do
case "${event,,}" in
"modify" ) echo -n "s: " && cat "$path" ;;
"delete_self" ) echo "c: vnc" ;;
esac
done