diff options
Diffstat (limited to 'etc/sh/rc')
-rw-r--r-- | etc/sh/rc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -339,8 +339,9 @@ makeflags_status() { fi } +VCS_PS1_TIMEOUT=0.5 vcs_status() { - timeout 0.5 vcs ps1 || if [ $? = 124 ]; then + timeout "$VCS_PS1_TIMEOUT" vcs ps1 || if [ $? = 124 ]; then color -c red '❌' fi } |