diff --git a/.bash_aliases b/.bash_aliases new file mode 100644 index 0000000..3e0cea2 --- /dev/null +++ b/.bash_aliases @@ -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' diff --git a/.bashrc b/.bashrc index 0d5c3e8..60d7fc2 100644 --- a/.bashrc +++ b/.bashrc @@ -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)"