This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stolen from here: http://stackoverflow.com/a/20703594/850326 | |
#!/bin/sh | |
export POSIXLY_CORRECT=1 | |
if [ -z "${1}" -o -z "${2}" ] | |
then | |
echo "Usage: ${0} <name> <original-png-location>" | |
fi | |
name=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#great little script to just use system icons for scripts | |
ICNS="/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/Sync.icns" | |
LOGO="/private/tmp/logo.png" | |
convertlogo=$(sips -z 512 512 -s format png ${ICNS} --out ${LOGO}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
################################################# | |
# Date: 05.12.23 | |
# | |
# version 1.0 | |
# Written by: Rob Potvin | Senior Consulting Engineer | Jamf | |
# | |
# DESCRIPTION | |
# Enable or Disable macOS Onboarding within the currenly logged in user. | |
# |
OlderNewer