sxiv: Add key-handler

This commit is contained in:
dogeystamp 2022-05-16 19:49:07 -04:00
parent f61b509b3c
commit eaa67ad100
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38

View File

@ -0,0 +1,8 @@
#!/bin/sh
while read -r file
do
case "$1" in
"d") mv $file ~/ ;;
"m") mv $file sta/ ;;
esac
done