]> git.phdru.name Git - dotfiles.git/blobdiff - .profile
bash: Use custom `short_curdir` instead of `\W` in `PS1`
[dotfiles.git] / .profile
index b336e2ad0489be9583bd0ba8b7cba5fd29cb5160..2cfb9431d9ad69cb6251fd751ebad263467f4035 100644 (file)
--- a/.profile
+++ b/.profile
@@ -192,15 +192,19 @@ if [ -t 0 ] ; then
          ;;
       esac
 
-      OPS1=${OPS1}"${debian_chroot:+($debian_chroot)}\u@\h \W "
+      if [ -r "$HOME"/admin/prog/short_curdir ]; then
+         . "$HOME"/admin/prog/short_curdir
+         OPS1=${OPS1}"${debian_chroot:+($debian_chroot)}\u@\h \`short_curdir\` \\$"
+      else
+         OPS1=${OPS1}"${debian_chroot:+($debian_chroot)}\u@\h \W \\$"
+      fi
       . "$ENV"
 
    else
-      OPS1="${debian_chroot:+($debian_chroot)}`/usr/bin/whoami`@`/bin/hostname -s` "
+      OPS1="${debian_chroot:+($debian_chroot)}`/usr/bin/whoami`@`/bin/hostname -s` >"
    fi
 
-   #PROMPT_DIRTRIM=2
-   export OPS1 # PROMPT_DIRTRIM
+   export OPS1
 
    ### biff controls new mail notification
    #biff n
@@ -304,9 +308,3 @@ fi
 #
 #    fi
 # fi
-
-if [ -n "$SSH_CONNECTION" -a -z "$STY" -a -t 0 ] &&
-   which screen >/dev/null 2>&1
-then
-   exec screen -xRR -S default
-fi