[zsh] Convert all shell-log calls to ShellLog

This commit is contained in:
Eryn Wells 2022-01-22 09:11:53 -08:00
parent 0894a4957e
commit a13ecc9e4d
17 changed files with 28 additions and 28 deletions

View file

@ -7,14 +7,14 @@ autoload darwin_configure_screenshots_directory
function darwin_init_once
{
# Dim dock icons of apps that have been hidden.
shell-log "Auto-hiding Dock"
ShellLog "Auto-hiding Dock"
defaults write com.apple.Dock showhidden -boolean yes
killall Dock
darwin_configure_screenshots_directory
# See https://techstuffer.com/this-app-is-damaged-error-macos-sierra/
shell-log "Disabling overly restrictive Gatekeeper"
ShellLog "Disabling overly restrictive Gatekeeper"
sudo spctl --master-disable
}