diff options
| author | Jake Koroman <jake@jakekoroman.com> | 2026-03-19 09:18:16 -0400 |
|---|---|---|
| committer | Jake Koroman <jake@jakekoroman.com> | 2026-03-19 09:18:16 -0400 |
| commit | b4b1666bffb8393fe9854734e2c72458b50f9bcb (patch) | |
| tree | 94edb5a72247dd0fc0f68a7ef1a2b4ee4851c3f8 /.bashrc | |
| parent | e4bb9e2697f91285dbb5b6440101b3c6838106a1 (diff) | |
TERM back to st, some new aliases and PS1.
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 15 |
1 files changed, 4 insertions, 11 deletions
@@ -19,8 +19,10 @@ alias yta="yt-dlp -f bestaudio -x --audio-format mp3 --sponsorblock-remove spons alias gs="git status" alias gd="git diff" alias gl="git log" +alias glo="git log --oneline" alias gc="git commit" alias ga="git add" +alias make="make -j$(nproc)" # Export 'SHELL' to child processes. Programs such as 'screen' # honor it and otherwise use /bin/sh. @@ -34,17 +36,8 @@ complete -F _command doas PROMPT_DIRTRIM=2 # PS1='\u@\h \w $ ' -PS1='\H [\[\e[94m\]\w\[\e[0m\]] \$ ' - -function red_text() { - RED="\033[91m" - RESET="\033[0m" - echo -ne "$(echo $RED)$1$(echo $RESET)" -} - -function todo() { - echo -e "[$(red_text TODO)]: $1" -} +# PS1='\H [\[\e[94m\]\w\[\e[0m\]] \$ ' +PS1='\h $ ' alias gobr="~/programming/gobr/gobr" ~/programming/gobr/gobr |
