diff options
author | Charlie Root <John Ankarstr\xf6m> | 2021-05-30 15:57:43 +0200 |
---|---|---|
committer | Charlie Root <John Ankarstr\xf6m> | 2021-05-30 15:57:43 +0200 |
commit | 23e83c2189bb53590a4756c79fbc78c16bb606e3 (patch) | |
tree | dbd110a128fc5aa0ae09a0dfc20ad7b21a2adb73 /etc | |
parent | 3571e7a8fb2dd9ddc36dcbfe96cd757e3fa6bbef (diff) | |
download | lbsd-23e83c2189bb53590a4756c79fbc78c16bb606e3.tar.gz |
shrc: Set terminal title to PWD
Diffstat (limited to 'etc')
-rw-r--r-- | etc/shrc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/etc/shrc b/etc/shrc new file mode 100644 index 0000000..92dd870 --- /dev/null +++ b/etc/shrc @@ -0,0 +1,17 @@ +# $NetBSD: shrc,v 1.7 2010/12/27 03:38:52 christos Exp $ +# +# System-wide .shrc file for sh(1). + +ll(){ ls -lp ${1+"$@"}; } + +case "$-" in *i*) + if /bin/test -z "${HOST}"; then + HOST="$(hostname)" + fi + PS1='
]2;$PWD'${HOST%%.*}$PS1 + set -o emacs + # This file is used by shells that might not support + # set -o tabcomplete, so check before trying to use it. + ( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete + ;; +esac |