In versions of Mac OS before Catalina I was able to configure the screen saver to "message" instead of the default "flurry". This helped people including lab users know what the machine name was. It looks like the way they are doing screen savers is now different and the file I used "/System/Library/Frameworks/ScreenSaver.framework/Resources/Computer Name.saver" is no longer available
This is how I was doing it:
#!/bin/bash
# SetLoginWindowScreensaverToFloatingMessage.bash
# Sets the Login Window Screensaver to Floating Message instead of Flurry and by default will show the computer name
# https://support.apple.com/en-us/HT202173
# https://support.apple.com/en-us/HT202223
# loginWindowIdleTime nnn where nnn is time in seconds to be idle
defaults write /Library/Preferences/com.apple.screensaver loginWindowIdleTime 300
defaults write /Library/Preferences/com.apple.screensaver loginWindowModulePath "/System/Library/Frameworks/ScreenSaver.framework/Resources/Computer Name.saver"
exit 0
Any ideas/suggestions on how to get Computer Name or some other screen saver that will do this on Catalina?
