diff options
Diffstat (limited to '.config/shell')
-rw-r--r-- | .config/shell/aliasrc | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 435be0b..bd119af 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -10,16 +10,13 @@ for command in mount umount sv apt apt-get aptitude dpkg su shutdown poweroff re alias $command="sudo $command" done; unset command -# Stuff here is kinda messy (too bad) -alias c="clear" - # Verbosity and settings that you pretty much just always are going to want. alias \ - cp="cp -iv" \ + cp="cp -iv" \ echo="echo -n" \ journalctl="journalctl -xe" \ mkd="mkdir -pv" \ - mv="mv -iv" \ + mv="mv -iv" \ rm="logrm -vI" \ rmd="rmdir -vp" \ rsync="rsync -vrPlu" \ @@ -36,7 +33,7 @@ alias \ ls="ls_new" \ vdir="vdir --color=auto" \ -# Make stuff easy to customize and source automatically +# Making stuff easy to customize and source automatically alias \ vrc='vim "$HOME/.config/vim/.vimrc"' \ zal='vim "$ZSHDIR/aliasrc" && source "$ZSHDIR/aliasrc"' \ @@ -63,9 +60,8 @@ alias \ sd="sudo shutdown -h now" \ tor="cd ~/Downloads/tor-browser/ && ./start-tor-browser.desktop && cd -" \ update="sudo apt update && apt upgrade" \ - update_dwm="cd ~/repos/dwm && cp ~/repos/dwm/config.def.h ~/repos/dwm/config.h && sudo make clean install && cd -" \ - wifi_connect="nmcli device wifi connect" \ - wifi_list="nmcli device wifi list" \ + ndw_connect="nmcli device wifi connect" \ + ndw_list="nmcli device wifi list" \ wttr="curl wttr.in/Wroclaw" \ # Git aliases |