We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3860335 commit 4bb43eaCopy full SHA for 4bb43ea
install.sh
@@ -27,6 +27,15 @@ if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
27
fi
28
29
30
+# Installing imgcat if using kitty
31
+if [[ "$TERM" == "xterm-kitty" ]]; then
32
+ if [[ ! $(which magick) ]]; then
33
+ curl -sS https://imagemagick.org/archive/binaries/magick -o /usr/local/bin/magick
34
+ chmod +x /usr/local/bin/magick
35
+ echo "Installed magick"
36
+ fi
37
+fi
38
+
39
# Installing chatgpt script
40
curl -sS https://raw.githubusercontent.com/0xacx/chatGPT-shell-cli/main/chatgpt.sh -o /usr/local/bin/chatgpt
41
0 commit comments