Adding new starship prompt.

This commit is contained in:
Derek Taylor
2022-11-14 11:50:31 -06:00
parent 0ae724e995
commit aea0c13069
5 changed files with 141 additions and 22 deletions

10
.bashrc
View File

@@ -87,6 +87,16 @@ shopt -s checkwinsize # checks term size when bash regains control
#ignore upper and lowercase when TAB completion
bind "set completion-ignore-case on"
### COUNTDOWN
cdown () {
N=$1
while [[ $((--N)) > 0 ]]
do
echo "$N" | figlet -c | lolcat && sleep 1
done
}
### ARCHIVE EXTRACTION
# usage: ex <file>
ex ()