150 lines
4.1 KiB
Bash
150 lines
4.1 KiB
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
#Ibus settings if you need them
|
|
#type ibus-setup in terminal to change settings and start the daemon
|
|
#delete the hashtags of the next lines and restart
|
|
#export GTK_IM_MODULE=ibus
|
|
#export XMODIFIERS=@im=dbus
|
|
#export QT_IM_MODULE=ibus
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
export HISTCONTROL=ignoreboth:erasedups
|
|
|
|
PS1="\e[0m[\e[01;32m\u\e[0m@\e[1;36m\h \e[1;33m\W\e[0m]\e[1;31m λ \e[0m"
|
|
|
|
if [ -d "$HOME/.bin" ] ;
|
|
then PATH="$HOME/.bin:$PATH"
|
|
fi
|
|
|
|
if [ -d "$HOME/.local/bin" ] ;
|
|
then PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
#ignore upper and lowercase when TAB completion
|
|
bind "set completion-ignore-case on"
|
|
|
|
#list
|
|
alias ls="ls --color=auto"
|
|
alias ll="ls -lah"
|
|
alias l.="ls -A | egrep '^\.'"
|
|
|
|
## Colorize the grep command output for ease of use (good for log files)##
|
|
alias grep="grep --color=auto"
|
|
alias egrep="egrep --color=auto"
|
|
alias fgrep="fgrep --color=auto"
|
|
|
|
#arcolinux logout unlock
|
|
alias rmlogoutlock="sudo rm /tmp/arcologout.lock"
|
|
|
|
#free
|
|
alias free="free -mt"
|
|
|
|
#use all cores
|
|
alias uac="sh ~/.bin/main/000*"
|
|
|
|
#continue download
|
|
alias wget="wget -c"
|
|
|
|
#userlist
|
|
alias userlist="cut -d: -f1 /etc/passwd"
|
|
|
|
#merge new settings
|
|
alias merge="xrdb -merge ~/.Xresources"
|
|
|
|
# Aliases for software managment
|
|
alias pacman="sudo pacman --color auto"
|
|
alias yays="yay --mflags --skipinteg"
|
|
alias update="pacman -Syyu --noconfirm"
|
|
alias yupdate="yay -Syyu --noconfirm"
|
|
|
|
#ps
|
|
alias psa="ps auxf"
|
|
alias psgrep="ps aux | grep -v grep | grep -i -e VSZ -e"
|
|
|
|
#grub update
|
|
alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
|
|
|
|
#add new fonts
|
|
alias update-fc="sudo fc-cache -fv"
|
|
|
|
#check vulnerabilities microcode
|
|
alias microcode="grep . /sys/devices/system/cpu/vulnerabilities/*"
|
|
|
|
#get fastest mirrors in your neighborhood
|
|
alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist"
|
|
alias mirrord="sudo reflector --latest 50 --number 20 --sort delay --save /etc/pacman.d/mirrorlist"
|
|
alias mirrors="sudo reflector --latest 50 --number 20 --sort score --save /etc/pacman.d/mirrorlist"
|
|
alias mirrora="sudo reflector --latest 50 --number 20 --sort age --save /etc/pacman.d/mirrorlist"
|
|
|
|
#shopt
|
|
shopt -s autocd # change to named directory
|
|
shopt -s cdspell # autocorrects cd misspellings
|
|
shopt -s cmdhist # save multi-line commands in history as single line
|
|
shopt -s dotglob
|
|
shopt -s histappend # do not overwrite history
|
|
shopt -s expand_aliases # expand aliases
|
|
|
|
#Recent Installed Packages
|
|
alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl"
|
|
alias riplong="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -3000 | nl"
|
|
|
|
#iso and version used to install the distro I use (ArcoLinux)
|
|
alias iso="cat /etc/dev-rel | awk -F '=' '/ISO/ {print $2}'"
|
|
|
|
#gpg
|
|
#verify signature for isos
|
|
alias gpg-check="gpg2 --keyserver-options auto-key-retrieve --verify"
|
|
#receive the key of a developer
|
|
alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys"
|
|
|
|
#maintenance
|
|
alias big="expac -H M '%m\t%n' | sort -h | nl"
|
|
alias downgrada="downgrade --ala-url 'https://bike.seedhost.eu/arcolinux/'"
|
|
|
|
#systeminfo
|
|
alias probe="sudo -E hw-probe -all -upload"
|
|
|
|
function bextract() {
|
|
if [ -f $1 ] ; then
|
|
case $1 in
|
|
*.tar.bz2) tar xjf $1 ;;
|
|
*.tar.gz) tar xzf $1 ;;
|
|
*.bz2) bunzip2 $1 ;;
|
|
*.rar) unrar x $1 ;;
|
|
*.gz) gunzip $1 ;;
|
|
*.tar) tar xf $1 ;;
|
|
*.tbz2) tar xjf $1 ;;
|
|
*.tgz) tar xzf $1 ;;
|
|
*.zip) unzip $1 ;;
|
|
*.Z) uncompress $1;;
|
|
*.7z) 7z x $1 ;;
|
|
*.deb) ar x $1 ;;
|
|
*.tar.xz) tar xf $1 ;;
|
|
*.tar.zst) unzstd $1 ;;
|
|
*) echo "I cannot decompress '$1'" ;;
|
|
esac
|
|
else echo "'$1' is not a valid file"; fi
|
|
}
|
|
|
|
alias bextract=bextract
|
|
|
|
#create a file called .bashrc-personal and put all your personal aliases
|
|
#in there. They will not be overwritten by skel.
|
|
[[ -f ~/.bashrc-personal ]] && . ~/.bashrc-personal
|
|
|
|
|
|
|
|
# custom aliases
|
|
alias emacs="emacs --no-window-system"
|
|
alias rr="curl -s -L http://bit.ly/10hA8iC | bash"
|
|
|
|
function weather() { curl "wttr.in/$1"; }
|
|
alias weather=weather
|
|
|
|
pfetch
|
|
|