launchd の .plist ファイルで動的なユーザー名 (ログイン ユーザーと見なす) が可能です。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>com.software.script</string>
<key>Program</key>
<string>/Users/$username/script.sh</string>
<key>RunAtLoad</key>
<true/>
</dict>
このように、ログインしているユーザーによってユーザー名が異なります。
<string>/Users/user1/script.sh</string>
また
<string>/Users/user2/script.sh</string>
また
<string>/Users/usern/script.sh</string>
ありがとうございました。