Set Day-O preferences.

This commit is contained in:
Scott Wallace 2016-08-20 10:09:08 +01:00
parent 615d86e8f1
commit 05a72b31c7
2 changed files with 11 additions and 0 deletions

Binary file not shown.

View file

@ -1,5 +1,15 @@
#!/bin/bash #!/bin/bash
function configure_Linux_software {
}
function configure_Darwin_software {
cp ~/.dotconfig/Darwin/com.shauninman.Day-O.plist ~/Library/Preferences
# Ensure any preference cache is cleared
pkill -u ${USER} cfprefsd
}
function install_Linux_software { function install_Linux_software {
#------------------------------- #-------------------------------
# Check the OS and set install command # Check the OS and set install command
@ -79,6 +89,7 @@ echo "#-------------------------------"
# Call the install function appropriate for this platform # Call the install function appropriate for this platform
install_$(uname -s)_software install_$(uname -s)_software
configure_$(uname -s)_software
#------------------------------- #-------------------------------
# Ensure Vim plugins are up-to-date, if older than one day # Ensure Vim plugins are up-to-date, if older than one day