> How about creating a quick script '/etc/threefingersalute', like the one
> below:
> - -
> if [ $USERNAME = "ROOT" ]; then

I'd suggest you use $LOGNAME instead of $USERNAME.  On my system, `echo
$USERNAME` returns nothing.  `echo $LOGNAME` on the other hand, returns
the username of whoever's logged in.  It works just fine with `su` too.
Also, "root" should be lowercase.

>  halt
> else
>  logout
> fi

Other than that, it looks good.

     -Matt

Reply via email to