diff options
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 |
