Move bash aliases to separate file

This commit is contained in:
daniele 2024-04-04 17:32:15 +02:00
parent afa24dda3b
commit df1f2ccb3a
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
2 changed files with 13 additions and 18 deletions

11
.bash_aliases Normal file
View File

@ -0,0 +1,11 @@
# Aliases
alias clean-aurutils-cache='find ~/.cache/aurutils/sync -type d -name .git -execdir git clean -xi \;'
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
alias ls='eza --icons --group-directories-first'
alias mutt='pushd ~/Downloads > /dev/null; mutt; popd > /dev/null'
alias rm='rm -I'
alias sort='sort -n'
alias ssh='kitten ssh'
alias sudo='sudo '
alias trayer='trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 7 --transparent true --tint 0x1f2022 --height 18 --monitor 0'
alias vi='vim'

20
.bashrc
View File

@ -9,20 +9,8 @@
complete -cf sudo
complete -c man
# Aliases
alias cinnamon-restart='nohup cinnamon --replace > /dev/null 2>&1 &'
alias clean-aurutils-cache='find ~/.cache/aurutils/sync -type d -name .git -execdir git clean -xi \;'
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
alias ls='eza --icons --group-directories-first'
alias mutt='pushd ~/Downloads > /dev/null; mutt; popd > /dev/null'
alias rm='rm -I'
alias sort='sort -n'
alias sudo='sudo '
alias trayer='trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 7 --transparent true --tint 0x1f2022 --height 18 --monitor 0'
alias vi='vim'
if [ "$TERM" == "xterm-kitty" ]; then
alias ssh='kitten ssh'
if [ -f ~/.bash_aliases ]; then
source ~/.bash_aliases
fi
# PS1
@ -37,10 +25,6 @@ eval "$(beet completion)"
export EDITOR=vim
export SUDO_EDITOR=rvim
#if [ "$TERM" == "xterm-kitty" ]; then
# fortune /usr/share/fortune/startrek /usr/share/fortune/anarchism /usr/share/fortune/asoiaf
#fi
fastfetch
eval "$(starship init bash)"