Add fish wrapper

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2022-04-21 20:18:20 +00:00
parent bd799c6bb8
commit 94b3b79c56
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57
1 changed files with 9 additions and 0 deletions

9
catsit.fish Normal file
View File

@ -0,0 +1,9 @@
function catsit
set pipe /run/catsit/catsitd
if [ -p $pipe ]
/usr/local/sbin/catsit -c $pipe $argv
end
if [ ! -p $pipe ]
echo "Connection impossible."
end
end