TABLE OF CONTENTS
Deploying Fonts
- Copy all of your fonts to a folder on your computer called “Fonts” and zip (compress) the folder.
- 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
Note: replace Font_File with the name of the file you are using and FontDirectory (1.0.0) with the name of the software item and it's associated version:`
/usr/bin/unzip -o "fonts.zip"
mv "/Library/Addigy/ansible/packages/FontDirectory (1.0.0)/fonts/"* "/Library/Fonts"
(add additional lines of the script if you would like to install multiple fonts)
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