2020-02-21 20:10:12 +01:00
|
|
|
#
|
|
|
|
# ~/.bashrc
|
|
|
|
#
|
|
|
|
|
|
|
|
# If not running interactively, don't do anything
|
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
|
|
|
export HISTCONTROL=ignoreboth:erasedups
|
|
|
|
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
|
|
|
|
if [ -d "$HOME/.bin" ] ;
|
|
|
|
then PATH="$HOME/.bin:$PATH"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d "$HOME/.local/bin" ] ;
|
|
|
|
then PATH="$HOME/.local/bin:$PATH"
|
|
|
|
fi
|
|
|
|
|
2020-02-29 15:39:31 +01:00
|
|
|
#update config
|
2020-08-26 21:19:36 +02:00
|
|
|
alias upconf='$HOME/scripts/arcolinux-config.sh'
|
2020-02-21 20:10:12 +01:00
|
|
|
|
|
|
|
#list
|
|
|
|
alias ls='ls --color=auto'
|
|
|
|
alias la='ls -a'
|
|
|
|
alias ll='ls -la'
|
|
|
|
alias l='ls'
|
|
|
|
alias l.="ls -A | egrep '^\.'"
|
|
|
|
|
|
|
|
#fix obvious typo's
|
|
|
|
alias cd..='cd ..'
|
|
|
|
|
|
|
|
## 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'
|
|
|
|
|
|
|
|
#continue download
|
|
|
|
alias wget="wget -c"
|
|
|
|
|
|
|
|
# Aliases for software managment
|
|
|
|
alias pacman='sudo pacman --color auto'
|
2020-08-26 21:43:15 +02:00
|
|
|
alias update='yay -Syu'
|
2020-02-21 20:10:12 +01:00
|
|
|
|
|
|
|
#grub update
|
|
|
|
alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
|
|
|
|
|
|
|
|
#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"
|
|
|
|
|
|
|
|
#mounting the folder Public for exchange between host and guest on virtualbox
|
|
|
|
alias vbm="sudo mount -t vboxsf -o rw,uid=1000,gid=1000 Public /home/$USER/Public"
|
|
|
|
|
|
|
|
#youtube-dl
|
|
|
|
alias yta-aac="youtube-dl --extract-audio --audio-format aac "
|
|
|
|
alias yta-best="youtube-dl --extract-audio --audio-format best "
|
|
|
|
alias yta-flac="youtube-dl --extract-audio --audio-format flac "
|
|
|
|
alias yta-m4a="youtube-dl --extract-audio --audio-format m4a "
|
|
|
|
alias yta-mp3="youtube-dl --extract-audio --audio-format mp3 "
|
|
|
|
alias yta-opus="youtube-dl --extract-audio --audio-format opus "
|
|
|
|
alias yta-vorbis="youtube-dl --extract-audio --audio-format vorbis "
|
|
|
|
alias yta-wav="youtube-dl --extract-audio --audio-format wav "
|
|
|
|
|
|
|
|
alias ytv-best="youtube-dl -f bestvideo+bestaudio "
|
|
|
|
|
|
|
|
#Cleanup orphaned packages
|
|
|
|
alias cleanup='sudo pacman -Rns $(pacman -Qtdq)'
|
|
|
|
|
|
|
|
#get the error messages from journalctl
|
|
|
|
alias jctl="journalctl -p 3 -xb"
|
|
|
|
|
|
|
|
#shutdown or reboot
|
|
|
|
alias ssn="sudo shutdown now"
|
|
|
|
alias sr="sudo reboot"
|
|
|
|
|
2020-02-29 15:20:01 +01:00
|
|
|
#cpu-x as sudo
|
|
|
|
alias cpu-x="sudo cpu-x"
|
|
|
|
|
2020-02-21 20:10:12 +01:00
|
|
|
# # ex = EXtractor for all kinds of archives
|
|
|
|
# # usage: ex <file>
|
|
|
|
ex ()
|
|
|
|
{
|
|
|
|
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 ;;
|
|
|
|
*) echo "'$1' cannot be extracted via ex()" ;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
echo "'$1' is not a valid file"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-08-26 21:48:53 +02:00
|
|
|
#execute stuff
|
2020-09-27 13:59:09 +02:00
|
|
|
neofetch
|