fish-fm: sxiv helper function

This commit is contained in:
dogeystamp 2023-06-27 16:11:59 -04:00
parent a1742ca0d2
commit cc348b5711
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38

View File

@ -41,3 +41,13 @@ function sel
end
exit
end
# use sxiv to select pictures
# see its man page about marking
# 'm' marks a single picture
function ssel
set res (sxiv -to $argv)
if test -n "$res"
sel $res
end
end