sshot: fix run_spectacle being broken due to new buggy behaviour in spectacle

master
an 2020-08-31 18:45:21 -06:00
commit 4599dd3319
1 arquivos alterados com 5 adições e 5 exclusões

Ver arquivo

@ -5,18 +5,18 @@ function notify
end
function run_spectacle
set f "$HOME/Pictures/"(date "+%y%m%d-%H%M%S")".png"
set f "/tmp/"(date "+%y%m%d-%H%M%S")".png"
spectacle -b $argv -n -o "$f"
spectacle -b $argv -n
if test -f "$f"
if test -f "/tmp/temp.png"
mv "/tmp/temp.png" "$f"
notify -u low -c transfer "Uploading..."
if sharenix -s Greyserv "$f"
notify -u low -c transfer.complete "Upload completed"
else
notify -u normal -c transfer.error "Upload failed"
end
rm "$f"
end
rm "$f"
end