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
# Setup defaults START | |
# Hide the dock very quickly, hide and deploy immediately | |
defaults write com.apple.dock autohide-time-modifier -int 0;killall Dock | |
defaults write com.apple.dock autohide-delay -float 0; killall Dock | |
# Not sure | |
defaults write com.apple.Terminal FocusFollowsMouse -string YES | |
# Disable font smooting |
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 | |
# Converts all .HEIC files in directory ($1) to .jpg | |
# Outputs converted images to $2 | |
if ! command -v /usr/local/bin/magick &> /dev/null | |
then | |
echo "magick could not be found, you need to install it." | |
exit | |
fi |