Latest
This commit is contained in:
parent
4f787edd2b
commit
602c1f630a
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue