From 9dec1225a493eface0146e4a35d6cf558e875129 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sun, 30 May 2021 20:55:28 -0400 Subject: fix #956 --- .config/shell/aliasrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.config/shell/aliasrc') diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 1f048ed..5122d08 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -7,9 +7,9 @@ [ -f "$XINITRC" ] && alias startx="startx $XINITRC" # sudo not required for some system commands -for x in mount umount sv pacman updatedb su ; do - alias $x="sudo $x" -done +for command in mount umount sv pacman updatedb su ; do + alias $command="sudo $command" +done; unset command # Verbosity and settings that you pretty much just always are going to want. alias \ -- cgit v1.3.1