These files are always sourced (never executed directly), so the #!/bin/bash shebang is inert and misleading. Drop it consistently across rc.d/*, profile.d/*, and aliases.d/*.
6 lines
176 B
Plaintext
6 lines
176 B
Plaintext
# [ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
|
|
if [ -n "${KITTY_INSTALLATION_DIR}" ]; then
|
|
alias ssh="kitty +kitten ssh"
|
|
alias icat="kitty +kitten icat"
|
|
fi
|