mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-01 16:56:38 +02:00
8 lines
227 B
Bash
Executable File
8 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
# >/dev/null 2>&1
|
|
/usr/local/bin/xkeysnail --quiet --watch "$1" &
|
|
while true
|
|
do inotifywait -e close_write,moved_to,create -q "$1"
|
|
/usr/bin/killall xkeysnail
|
|
/usr/local/bin/xkeysnail --quiet --watch "$1" &
|
|
done |