projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40ca437
)
base-files: provide more tolerant xterm detection
author
Paul Wassi
<
[email protected]
>
Thu, 23 Aug 2018 07:24:43 +0000
(09:24 +0200)
committer
Jo-Philipp Wich
<
[email protected]
>
Tue, 18 Dec 2018 10:28:12 +0000
(11:28 +0100)
Set the window title not only in "xterm", but also in
e.g. "xterm-256color", "xterm-color", etc.
The case statement is taken from Debian / Ubuntu.
Signed-off-by: Paul Wassi <
[email protected]
>
(backported from
1bd6b91e0f9f53f13b5a9fa2939674012fe7193f
)
package/base-files/files/etc/profile
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/profile
b/package/base-files/files/etc/profile
index e9936fb36a9a937381c2bf3405a50bc9ec39cf02..9a3ac069a20ecbff36c704c11013a639cfef705d 100644
(file)
--- a/
package/base-files/files/etc/profile
+++ b/
package/base-files/files/etc/profile
@@
-14,7
+14,11
@@
export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
export HOME=${HOME:-/root}
export PS1='\u@\h:\w\$ '
-[ "$TERM" = "xterm" ] && export PS1='\[\e]0;\u@\h: \w\a\]'$PS1
+case "$TERM" in
+ xterm*|rxvt*)
+ export PS1='\[\e]0;\u@\h: \w\a\]'$PS1
+ ;;
+esac
[ -x /bin/more ] || alias more=less
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi