20 lines
596 B
Bash
20 lines
596 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias sudo='sudo '
|
|
alias cheat='f() { curl cheat.sh/$1; };f'
|
|
alias updatemirrors='sudo reflector --age 12 --number 10 --protocol https --sort rate --save /etc/pacman.d/mirrorlist'
|
|
alias pacman-clean='pacman -Rsn $(pacman -Qdtq)'
|
|
alias dolphin='/usr/bin/dolphin --stylesheet ~/.config/qt5ct/qss/dolphin.qss'
|
|
|
|
complete -cf sudo
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
|