use inotifywait; clipboard

Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
Jack L. Frost 2019-05-09 23:31:25 +03:00
parent e2c6143c8c
commit d7f1104f82
1 changed files with 20 additions and 20 deletions

40
ufwd
View File

@ -31,6 +31,8 @@ main() {
(--notify|-n) flag_enable_notifications=1;; (--notify|-n) flag_enable_notifications=1;;
(--clipboard|-c) flag_enable_clipboard=1;;
(--) shift; break;; (--) shift; break;;
(-*) (-*)
err "Unknown key: $1" err "Unknown key: $1"
@ -52,30 +54,28 @@ main() {
fi fi
fi fi
mkdir -p "$cfg_workdir" || { mkdir -p "$cfg_workdir" || return 1
return 1 cd "$cfg_workdir" || return 1
}
cd "$cfg_workdir" || { while read -r dir action path; do
return 1 upload_output=$( ufw "$@" -R "$dir$path" )
} upload_return=$?
while sleep "$cfg_scan_delay"; do if (( flag_enable_notifications )); then
for i in *; do if (( $upload_return )); then
upload_output=$( ufw "$@" -R "$i" ) notify-send 'ufwd' "File upload failed: $upload_output"
upload_return=$? else
notify-send 'ufwd' "File uploaded: $upload_output"
if (( flag_enable_notifications )); then
if (( $upload_return )); then
notify-send 'ufwd' "File upload failed: $upload_output"
else
notify-send 'ufwd' "File uploaded: $upload_output"
fi
fi fi
fi
printf '%s\n' "$upload_output" if (( flag_enable_clipboard )); then
done read -r fl <<< "$upload_output"
done xclip <<< "$fl"
fi
printf '%s\n' "$upload_output"
done < <( inotifywait -m -e create "$cfg_workdir" )
} }
main "$@" main "$@"