4 lines
91 B
Bash
Executable File
4 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
while inotifywait -r /usr/share/themes/; do
|
|
rsync -az ~/.themes/ /target
|
|
done |