This commit is contained in:
Brian Zalewski 2024-05-03 05:09:46 +00:00
parent 4f787edd2b
commit 602c1f630a

View file

@ -779,6 +779,12 @@ setupLinuxHomebrewFonts() {
fi fi
} }
miscMacOs() {
if [ ! -d "$HOME/Library/PreferencePanes" ]; then
logg info 'Ensuring $HOME/Library/PreferencePanes exists as a folder' && mkdir -p "$HOME/Library/PreferencePanes"
fi
}
# TODO - Add install on macOS for macports # TODO - Add install on macOS for macports
if [ -n "$DEBUG" ] || [ -n "$DEBUG_MODE" ]; then if [ -n "$DEBUG" ] || [ -n "$DEBUG_MODE" ]; then
logg info 'The DEBUG or DEBUG_MODE environment variable is set so preliminary system tweaks will be run synchronously' logg info 'The DEBUG or DEBUG_MODE environment variable is set so preliminary system tweaks will be run synchronously'
@ -804,6 +810,7 @@ if [ -n "$DEBUG" ] || [ -n "$DEBUG_MODE" ]; then
showNotificationCenter showNotificationCenter
zapInstall zapInstall
setupLinuxHomebrewFonts setupLinuxHomebrewFonts
miscMacOs
else else
addFlathub & addFlathub &
allocateSwap & allocateSwap &
@ -827,6 +834,7 @@ else
showNotificationCenter & showNotificationCenter &
zapInstall & zapInstall &
setupLinuxHomebrewFonts & setupLinuxHomebrewFonts &
miscMacOs &
wait wait
fi fi