Add aliases for quickly running proot in termux for compiling keyboard firmware

This commit is contained in:
KemoNine 2022-05-30 15:55:59 -04:00
parent 9888741bd3
commit 444a522002
1 changed files with 7 additions and 1 deletions

8
zshrc
View File

@ -78,9 +78,15 @@ export PATH=~/.local/bin:${PATH}
# asdf
. $HOME/.asdf/asdf.sh
# aliases (before interactive, just in case)
# global aliases (before interactive, just in case)
alias ls="exa"
# termux aliases
if grep -q "Android" <<< `uname -a`; then
alias proot-distro-keeb-root="proot-distro login keeb"
alias proot-distro-keeb="proot-distro login --user keeb --termux-home keeb -- /bin/bash"
fi
# dont allow mosh prediction (override in zshrc.local)
export MOSH_PREDICTION_DISPLAY="never"