Upload files to "bash"

This commit is contained in:
2025-11-08 21:08:48 +00:00
parent a4287e1787
commit 9be463e5f3

26
bash/.bashrc Normal file
View File

@@ -0,0 +1,26 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Aliases
alias ls='ls --color=auto'
alias ll='ls -alhF'
alias grep='grep --color=auto'
alias fetch='fastfetch'
alias grub-update='sudo grub-mkconfig -o /boot/grub/grub.cfg'
# Theme
BLUE="\[\e[0;34m\]"
RED="\[\e[0;91m\]"
VIOLET="\[\e[0;35m\]"
GREEN="\[\e[0;32m\]"
YELLOW="\[\e[0;33m\]"
RESET="\[\e[0m\]"
PS1="[$VIOLET\u$RESET$GREEN@$RESET$RED\h$RESET $YELLOW\w$RESET]$BLUEλ$RESET "