diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-21 21:39:40 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-21 21:39:40 +0400 |
commit | 75911c83ea3b8123093071574746d2bbdadb2653 (patch) | |
tree | ff3bbf7e52f986a26811381ecfeb6838b48b327e | |
parent | adc32350caaa166fa6c9937f310551c08f88657b (diff) |
fix(profile): use `TERM` environmental variable instead of `TERMINAL`
-rw-r--r-- | config/shell/profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/shell/profile b/config/shell/profile index 23434bd..c12de58 100644 --- a/config/shell/profile +++ b/config/shell/profile @@ -14,8 +14,8 @@ export PATH="${XDG_BIN_DIR}:${PATH}" # Environment variables [ -x "$(command -v vim)" ] && export EDITOR="vim" [ -x "$(command -v nvim)" ] && export EDITOR="nvim" -[ -x "$(command -v alacritty)" ] && export TERMINAL="alacritty" -[ -x "$(command -v st)" ] && export TERMINAL="st" +[ -x "$(command -v alacritty)" ] && export TERM="alacritty" +[ -x "$(command -v st)" ] && export TERM="st" [ -x "$(command -v qutebrowser)" ] && export BROWSER="qutebrowser" [ -x "$(command -v firefox)" ] && export BROWSER="firefox" |