You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Script to make a Finder Prompt to rename the computer.
#
# Ralph Casafrancisco
# http://github.com/allkindsofralph
# 2019-April-05
# Get User to input name
while true
do
name=$(sudo -u "$3" osascript -e 'Tell application "System Events" to display dialog "Please enter a name for your computer" default answer ""' -e 'text returned of result' 2>/dev/null)
if [ $? -ne 0 ]
then # user cancel
exit
elif [ -z "$name" ]
then # loop until input or cancel
sudo -u "$3" osascript -e 'Tell application "System Events" to display alert "Please enter a name or select Cancel!" as warning'