2018-09-05 18:27:01 -04:00
|
|
|
#!/bin/zsh
|
|
|
|
: ${XDG_CACHE_HOME:=~/.cache}
|
|
|
|
MAC_KITTY=/Applications/kitty.app/Contents/MacOS
|
|
|
|
|
|
|
|
if (( $+commands[kitty] == 0 )); then
|
|
|
|
if [[ -x $MAC_KITTY/kitty ]]; then
|
|
|
|
path=($MAC_KITTY $path)
|
|
|
|
else
|
2018-10-11 00:39:52 -04:00
|
|
|
print "Sorry, kitty must be installed to use this script! https://sw.kovidgoyal.net/kitty" >&2
|
2018-09-05 18:27:01 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
exec kitty @ --to unix:$XDG_CACHE_HOME/kitty/kitty.sock "$@"
|