-
nalaA TUI replacement
aptthat uses mirrors and parallel downloads to be a lot betterAutomagically replace all calls to
aptwithnala```bashInside ~/.bashrc (or .zshrc)
apt() { command nala "$@" } sudo() { if ["$1" = "apt" ]; then shift command sudo nala "$@" else command sudo "$@" fi } ```
-
zshThe replacement for the bash shell.After installing, first create the file
~/.zshenvto set zsh to store its configs in the.configfolderbash echo "ZDOTDIR=$HOME/.config/zsh" > ~/.zshenvThen set zsh as the default shell:
bash chsh -s $(which zsh)Hopefully at some point I'll be smart enough to create a github repo and backup the configs I am making...
-
tarExample usage:
bash tar cvfz archive.tar.gz folder/