TABLE OF CONTENTS
Deploying Fonts
-
Copy all of your fonts to a folder on your computer called “Fonts” and zip (compress) the folder
(Note: Make sure to rename the .zip if the file name is the same as any of the fonts. Not doing so will result in an error when deploying.) - Create a Custom Software item from the Policies > Custom Software section.
- Upload the compressed file you intend to install.
- Use the following script as part of the Custom Software Installation Script to move the font file to it's the device's font directory
/usr/bin/unzip -o "fonts.zip"
mv "/Library/Addigy/ansible/packages/FontDirectory (1.0.0)/fonts/"* "/Library/Fonts"
Note: Replace "FontDirectory (1.0.0)" with the name of you chose for the Smart Software item and it's associated version.
Example:
Deploying Images
- Create a Custom Software item from the Policies > Custom Software section.
- Upload the image file(s) you intend to use.
- Use the following script to move the images to the directory on the device you intend users to find the images on.
Note: replace Image_File with the name of the file you are using and ImageDirectory (1.0.0) with the name of the software item and it's associated version:
mv '/Library/Addigy/ansible/packages/ImageDirectory (1.0.0)/Image_File' '/Name/Of/Directory/Goes/Here'
Example:
Applying Images As Wallpapers