updated title.sh

pull/2/head
Hari Sekhon 5 years ago
parent 45914a4c35
commit 3be1839d93

@ -41,7 +41,7 @@ termtitle(){
isscreen(){
# $STY is only set in screen it seems so this determines if we're in screen
[ -n "$STY" ]
[ -n "${STY:-}" ]
}
screentitle(){
@ -52,6 +52,16 @@ screentitle(){
fi
}
istmux(){
[ -n "${TMUX:-}" ]
}
tmuxtitle(){
if istmux; then
printf "\033]2;%s\033\\" "${*:-}"
fi
}
title(){
export LAST_TITLE="$TITLE"
#if [ $# -eq 0 ]; then
@ -151,7 +161,7 @@ vim(){
if [[ "${TITLE_SHORT:-}" =~ ^[0-9]+$ ]]; then
num=$TITLE_SHORT
fi
if [ $num -lt 3 ]; then
if [ "$num" -lt 3 ]; then
num=3
fi
title="${title//.txt/}"

Loading…
Cancel
Save