Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Touchup to make logout hook work with 10.2' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Touchup to make logout hook work with 10.2
Authored by: clueless on Nov 18, '04 04:59:04PM
Cool - I had a bit of trouble getting it to go though. In the end I used 'greed's version in the loginhook script

#!/bin/sh
/usr/bin/defaults write \
 /Library/Preferences/com.apple.loginwindow \
 LoginwindowText \
 -string "$(/sw/bin/fortune)"
and

sudo defaults write com.apple.loginwindow \
        LogoutHook /Library/Hooks/loginfortune.sh
to make the log out hook version work. I don't understand why everybody wants to shorten the long ones - they wrap ok in Jaguar anyway

[ Reply to This | # ]