Use the following steps to manage and enable the Computer Name screen saver to display at the login window.
Tip: If you use browse to /System/Library/Screen Savers/ you may see other screen savers such as "FloatingMessage.saver". This screen saver is not designed to be used at the login window. Use "Computer Name.saver" instead.
Using Profile Manager
- 

- In Profile Manager, select the Device or Device Group you wish to manage. 

- Click the Settings tab. 

- Click the Edit button to edit the profile. 

- Select the login window payload from the OS X section. 

- If you have not configured settings for this payload, click the Configure button. 

- Click the Options tab. 

- Enable the checkbox next to the "Start screen saver after: X minutes" option. 

- Enable the checkbox next to the "Use screen saver module at path:" and enter the following path:



 /System/Library/Frameworks/ScreenSaver.framework/Resources/Computer Name.saver

 
 - Click OK to dismiss the edit view. 

- Click Save to save the changes. 

To customize the message displayed by the Computer Name screen saver, execute the following Terminal command on the system:

sudo defaults write /Library/Preferences/com.apple.ScreenSaver.Basic MESSAGE "Math Lab"

Replace "Math Lab" with your custom message.
Using Workgroup Manager
- 

- In Workgroup Manager, select the Computer or Computer Group you wish to manage. 

- Click Preferences in the top toolbar. 

- Click the Overview tab. 

- Click the Login button. 

- Click the Options tab. 

- Choose to manage the settings "Always". 

- Enable the checkbox next to the "Start screen saver after: X minutes". 

- Enter the following path to use the Computer Name screen saver module:



 /System/Library/Frameworks/ScreenSaver.framework/Resources/Computer Name.saver

 
 - Click Apply Now to save the changes. 

To customize the message displayed by the Computer Name screen saver, execute the following Terminal command on the system:

sudo defaults write /Library/Preferences/com.apple.ScreenSaver.Basic MESSAGE "Math Lab"

Replace "Math Lab" with your custom message.
Configuring locally
You can execute the following three commands on OS X v10.6 or later to set the idle time to 5 minutes, specify the Computer Name screen saver module, and customize the message as "Math Lab", respectively (replace Math Lab as needed):
sudo defaults write /Library/Preferences/com.apple.screensaver loginWindowIdleTime 300
sudo defaults write /Library/Preferences/com.apple.screensaver loginWindowModulePath "/System/Library/Frameworks/ScreenSaver.framework/Resources/Computer Name.saver"
sudo defaults write /Library/Preferences/com.apple.ScreenSaver.Basic MESSAGE "Math Lab"

Notes
- 

- loginWindowIdleTime defines the time in seconds. 

- loginWindowModulePath defines the file system path to a screen saver module. 

- MESSAGE defines the custom message.