]> git.phdru.name Git - dotfiles.git/commitdiff
Feat(bash_prompt): Cut dirs to 20% of the term width
authorOleg Broytman <phd@phdru.name>
Mon, 26 Apr 2021 15:17:12 +0000 (18:17 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 26 Apr 2021 15:17:12 +0000 (18:17 +0300)
admin/prog/bash_prompt

index 7ef5fc970ab4c8a57be04698859ab597b63368a4..8c3a9fe29612c4827ae1d868d0cf819395d727eb 100644 (file)
@@ -6,6 +6,10 @@ cgmem_which_prompt() {
    fi
 }
 
+# Cut directories to 20% of the terminal width; add space for 3 dots
+_DIR_LENGTH=`awk "END { print int(0.2 * $COLUMNS) }" </dev/null`
+_DIR_LENGTH_DOTS=`expr $_DIR_LENGTH + 3`
+
 short_curdir() {
    if [ "$PWD" = / ]; then
       echo /
@@ -17,8 +21,8 @@ short_curdir() {
    fi
    local _short_curdir
    _short_curdir="${PWD##*/}" # cut all directories, get base name
-   if [ "${#_short_curdir}" -gt 18 ]; then
-      _short_curdir="${_short_curdir::15}..." # cut long string
+   if [ "${#_short_curdir}" -gt $_DIR_LENGTH_DOTS ]; then
+      _short_curdir="${_short_curdir::$_DIR_LENGTH}..." # cut long string
    fi
    echo "${_short_curdir}"
 }