mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Fix TERM checking for kitty under Darwin
This commit is contained in:
parent
6af0b3666c
commit
e777605f33
@ -53,12 +53,12 @@ if [[ -z "${TERMINAL:-}" ]]; then
|
|||||||
# | Check for the terminal name (depening on os)
|
# | Check for the terminal name (depening on os)
|
||||||
# | ===========================================
|
# | ===========================================
|
||||||
OS="$(uname)"
|
OS="$(uname)"
|
||||||
if [[ "$OS" = "Darwin" ]]; then
|
if [[ "$TERM" = "xterm-kitty" ]]; then
|
||||||
|
TERMINAL="kitty"
|
||||||
|
elif [[ "$OS" = "Darwin" ]]; then
|
||||||
TERMINAL=$TERM_PROGRAM
|
TERMINAL=$TERM_PROGRAM
|
||||||
elif [[ "${OS#CYGWIN}" != "${OS}" ]]; then
|
elif [[ "${OS#CYGWIN}" != "${OS}" ]]; then
|
||||||
TERMINAL="mintty"
|
TERMINAL="mintty"
|
||||||
elif [[ "$TERM" = "xterm-kitty" ]]; then
|
|
||||||
TERMINAL="kitty"
|
|
||||||
else
|
else
|
||||||
# |
|
# |
|
||||||
# | Depending on how the script was invoked, we need
|
# | Depending on how the script was invoked, we need
|
||||||
|
Loading…
Reference in New Issue
Block a user