From 3a39168629bc56ba4ac55aa04b5cd45846fa0549 Mon Sep 17 00:00:00 2001 From: Adam Eivy Date: Fri, 10 Feb 2017 09:57:06 -0800 Subject: [PATCH 1/2] no longer disable notification center --- HISTORY.md | 4 ++++ README.md | 1 - install.sh | 4 ++-- package.json | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 79e093a55..e03f9ea89 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -3,6 +3,7 @@ **Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* - [Release History](#release-history) + - [v4.4.1](#v441) - [v4.4.0](#v440) - [v4.3.0](#v430) - [v4.2.0](#v420) @@ -24,6 +25,9 @@ # Release History +## v4.4.1 + * re-enable notification center + ## v4.4.0 * cleanup readme and alphabetize software installation for better fork management and listing * disable vim YouCompleteMe Bundle (wasn't using it anyway and was causing installation problems on some machines) diff --git a/README.md b/README.md index e5b592cc6..fe899fd84 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,6 @@ The following will only happen if you agree on the prompt - Restart automatically if the computer freezes - Never go into computer sleep mode - Check for software updates daily, not just once per week -- Disable Notification Center and remove the menu bar icon - Disable smart quotes as they’re annoying when typing code - Disable smart dashes as they’re annoying when typing code diff --git a/install.sh b/install.sh index 188164c63..8f5e5832a 100755 --- a/install.sh +++ b/install.sh @@ -561,8 +561,8 @@ sudo systemsetup -setcomputersleep Off > /dev/null;ok running "Check for software updates daily, not just once per week" defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1;ok -running "Disable Notification Center and remove the menu bar icon" -launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist > /dev/null 2>&1;ok +# running "Disable Notification Center and remove the menu bar icon" +# launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist > /dev/null 2>&1;ok running "Disable smart quotes as they’re annoying when typing code" defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false;ok diff --git a/package.json b/package.json index 6fdb34926..a231f655d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dotfiles", - "version": "4.4.0", + "version": "4.4.1", "description": "atomantic dotfiles for osx", "main": "index.js", "scripts": { From 20940bbd6d5f6a72bb2297cd733eb99d50cc3822 Mon Sep 17 00:00:00 2001 From: Adam Eivy Date: Fri, 10 Feb 2017 11:13:05 -0800 Subject: [PATCH 2/2] fix optional gitshots --- .git_template/hooks/{post-commit => gitshot-pc} | 0 HISTORY.md | 1 + 2 files changed, 1 insertion(+) rename .git_template/hooks/{post-commit => gitshot-pc} (100%) diff --git a/.git_template/hooks/post-commit b/.git_template/hooks/gitshot-pc similarity index 100% rename from .git_template/hooks/post-commit rename to .git_template/hooks/gitshot-pc diff --git a/HISTORY.md b/HISTORY.md index e03f9ea89..16cdd5f17 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -27,6 +27,7 @@ ## v4.4.1 * re-enable notification center + * fix gitshots optional ability by renaming post-commit -> gitshot-pc ## v4.4.0 * cleanup readme and alphabetize software installation for better fork management and listing