minor structural improvements

This commit is contained in:
2025-10-12 18:54:08 +00:00
parent ee1c79f088
commit 38d44f03d3
4 changed files with 28 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
[ -f ~/.bashrc ] && . ~/.bashrc
stty intr ^K
alias ssh='wssh'
alias sudo='wsudo'
su() {
if [ "$1" = "-" ]; then
shift && wsudo - -u "$@"
else
wsudo -u "$@"
fi
}