mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00

Convert all shebangs to /usr/bin/env bash, if bash is really required in the script. Otherwise convert it to /bin/sh. /bin/bash is not available on all systems, while /usr/bin/env bash and /bin/sh are.
18 lines
404 B
Bash
Executable file
18 lines
404 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#LP_ENABLE_RUNTIME=1
|
|
LP_ENABLE_TITLE=1
|
|
LP_ENABLE_SSH_COLORS=1
|
|
LP_ENABLE_VCS_ROOT=1
|
|
LP_DISABLED_VCS_PATH=""
|
|
LP_ENABLE_TEMP=0
|
|
LP_ENABLE_BATT=0
|
|
LP_ENABLE_SVN=0
|
|
LP_ENABLE_HG=0
|
|
LP_ENABLE_BZR=0
|
|
LP_ENABLE_FOSSIL=0
|
|
LP_ENABLE_SUDO=1
|
|
|
|
# if in git folder, the prompt takes very long to rebuild
|
|
mountpoint $HOME 2> /dev/null > /dev/null && LP_DISABLED_VCS_PATH="$HOME"
|
|
source ~/.liquidprompt/liquidprompt
|