diff options
| author | tslil clingman <tslil@posteo.net> | 2022-05-07 19:02:51 -0500 |
|---|---|---|
| committer | tslil clingman <tslil@posteo.net> | 2022-05-07 19:02:51 -0500 |
| commit | 000bc77a884f4b7324faa974589e9b8ada12acbd (patch) | |
| tree | 6fc00481a986cad3887e9065f12a7d838180b1db /.mkshrc | |
| parent | 129f8b107d1db0fa710e2a744ffeb3f1220c25c7 (diff) | |
Fix titles...
Diffstat (limited to '.mkshrc')
| -rw-r--r-- | .mkshrc | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -7,12 +7,10 @@ generate_prompt() { echo -n "[$p]($d)$r$v$u "; # Display PWD case ${TERM} in - foot*|tmux*) - printf "\033]0;%s:%s\007" "${USER}" "$p";; - #tmux*) - # printf "\033]2;%s:%s\033\\" "${USER}" "$p";; - screen*) - printf '\ek%s:%s\e\\' "${USER}" "$p";; + foot*) + printf "\033]0;%s\007" "$p";; + screen*|tmux*) + printf '\ek%s\e\\' "$p";; esac return $e } |
