diff options
Diffstat (limited to '.config/shell')
-rwxr-xr-x | .config/shell/aliasrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 174f851..8ff52fe 100755 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -8,7 +8,7 @@ # sudo not required for some system commands. for x in mount unmount sv pacman updatedb su reboot; do - alias $x="sudo $x" + alias $x="doas $x" done # Verbosity and settings that you pretty much just always are going to want. |