diff options
Diffstat (limited to 'etc/sh/rc')
-rw-r--r-- | etc/sh/rc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -246,7 +246,9 @@ in_ssh_session() { } vcs_status() { - timeout 0.5 vcs ps1 || color -c red '❌' + timeout 0.5 vcs ps1 || if [ $? = 124 ]; then + color -c red '❌' + fi } PS1='`error_marker`'$(timestamp)' '$(path)' `shell_status``vcs_status``guix_env``in_nix_shell` |