How to make an application icon for macOS using
iconset&iconutil
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
| # Mount the font tools dmg as a volume on your Mac | |
| hdiutil attach ~/Downloads/osxfonttools.dmg | |
| # Navigate into the volume and copy | |
| # the main .pkg file somewhere locally | |
| # so you can manipulate it | |
| cd /Volumes/OS\ X\ Font\ Tools/ | |
| pkgutil --expand OS\ X\ Font\ Tools.pkg ~/fontTools && cd ~/fontTools | |
| # If you ls, here's what's in the file |
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
| #!/usr/bin/python | |
| # Downloads the current "Astronomy Picture of the Day" from nasa.gov and sets as wallpaper | |
| # | |
| # Installation steps: | |
| # - store this file somewhere and take note of the path | |
| # - change WALLPAPER_DIR to some folder in your home directory | |
| # and create the folder | |
| # - make it executable: | |
| # chmod a+x /path/to/change_wallpaper | |
| # - follow instructions given in the .plist file to make it run daily |
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
| node: Platform built on V8 to build network applications | |
| git: Distributed revision control system | |
| wget: Internet file retriever | |
| yarn: JavaScript package manager | |
| python3: Interpreted, interactive, object-oriented programming language | |
| coreutils: GNU File, Shell, and Text utilities | |
| pkg-config: Manage compile and link flags for libraries | |
| chromedriver: Tool for automated testing of webapps across many browsers | |
| awscli: Official Amazon AWS command-line interface | |
| automake: Tool for generating GNU Standards-compliant Makefiles |
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
| defaults write com.barebones.bbedit Color:Background -string "rgb(0,0,0)" | |
| defaults write com.barebones.bbedit Color:CTagsIdentifier -string "rgb(57825,39937,11422)" | |
| defaults write com.barebones.bbedit Color:ColorAttributesSeparately -string 1 | |
| defaults write com.barebones.bbedit Color:Comment -string "rgb(21845,21845,21845)" | |
| defaults write com.barebones.bbedit Color:Comment:Ruby -string "rgb(34992,34992,34992)" | |
| defaults write com.barebones.bbedit Color:Foreground -string "rgb(65535,65535,65535)" | |
| defaults write com.barebones.bbedit Color:Foreground:CSS -string "rgb(56342,56342,56342)" | |
| defaults write com.barebones.bbedit Color:GuideContrast -string 7 | |
| defaults write com.barebones.bbedit Color:HTMLAnchor -string "rgb(43690,0,0)" | |
| defaults write com.barebones.bbedit Color:HTMLAttributeName -string "rgb(57528,45076,5799)" |