dotfiles: Finding a few commands not working on Mavericks (10.9).
# Disable the sound effects on boot
sudo nvram SystemAudioVolume=" "
# Menu bar: show remaining battery time (on pre-10.8); hide percentage
defaults write com.apple.menuextra.battery ShowPercent -string "NO"
defaults write com.apple.menuextra.battery ShowTime -string "YES"
# Menu bar: hide the useless Menu bar icons (only battery and clock)
defaults write com.apple.systemuiserver menuExtras -array "/System/Library/CoreServices/Menu Extras/Battery.menu" "/System/Library/CoreServices/Menu Extras/Clock.menu"
Only seems to work on certain folders, doesn’t override globally
# Use column view in all Finder windows by default
# Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv`
defaults write com.apple.finder FXPreferredViewStyle -string "clmv"
This doesn’t disable, even after quitting and restart finder. Still ending up with the file extension overlaid in icon view. http://d.pr/i/7lRn
/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo false" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:showItemInfo false" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:showItemInfo false" ~/Library/Preferences/com.apple.finder.plist
Strangely enough, I tried using NO
instead of false
, while I had the finder plist open, and it changed from NO
back to YES
on its own, right before my eyes. Odd.
I think that’s it? Feel like I’m forgetting a couple of others.
About this issue
- Original URL
- State: open
- Created 11 years ago
- Reactions: 1
- Comments: 45 (4 by maintainers)
Commits related to this issue
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 Ref. ... — committed to mathiasbynens/dotfiles by mathiasbynens 11 years ago
- .osx: Delete some old commands that no longer work These commands only work on outdated versions of OS X. Ref. #305. — committed to mathiasbynens/dotfiles by mathiasbynens 11 years ago
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 — committed to s10wen/dotfiles by s10wen 10 years ago
- .osx: Delete some old commands that no longer work These commands only work on outdated versions of OS X. Ref. #305. — committed to hsingh/dotfiles by mathiasbynens 11 years ago
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 Ref. ... — committed to peschee/dotfiles by mathiasbynens 11 years ago
- .osx: Delete some old commands that no longer work These commands only work on outdated versions of OS X. Ref. #305. — committed to peschee/dotfiles by mathiasbynens 11 years ago
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 Ref. ... — committed to thorsten/dotfiles by mathiasbynens 11 years ago
- .osx: Delete some old commands that no longer work These commands only work on outdated versions of OS X. Ref. #305. — committed to thorsten/dotfiles by mathiasbynens 11 years ago
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 Ref. ... — committed to natchiketa/dotfiles by mathiasbynens 11 years ago
- .osx: Delete some old commands that no longer work These commands only work on outdated versions of OS X. Ref. #305. — committed to natchiketa/dotfiles by mathiasbynens 11 years ago
- osx: kill zombie menu extras Something fishy going on on this machine that I can't explain: menu extras come back on log in or reboot, despite being removed via checkboxes in the UI. This is true eve... — committed to wincent/wincent by wincent 9 years ago
- Self pull (#1) * README: Tweak Git-free install command * bin: Update `subl` symlink to `Sublime Text 3.app` * .osx: Add Spotlight settings Closes #91 and #174. * .bash_profile: Remove ‘a... — committed to nepur/dotfiles by nepur 8 years ago
- .macos: Simplify `SystemUIServer` configuration Closes #731 and #229. Ref. #305. — committed to mathiasbynens/dotfiles by mathiasbynens 7 years ago
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 Ref. ... — committed to CNG/dotfiles_mac by mathiasbynens 11 years ago
- .macos: Simplify `SystemUIServer` configuration Closes #731 and #229. Ref. #305. — committed to jmuth/dotfiles by mathiasbynens 7 years ago
- Merge w/ base May '17 (#1) * bin: Remove `httpcompression` @alrra maintains it now. Hopefully it can be moved to its own repository and installed through npm/brew soon. See https://github.com/a... — committed to Meesayen/dotfiles by Meesayen 7 years ago
- .macos: Simplify `SystemUIServer` configuration Closes #731 and #229. Ref. #305. — committed to theanxy/dotfiles by mathiasbynens 7 years ago
- .osx: Hide some menu bar icons in OS X 10.9 Mavericks Kudos to @kevinSuttle for finding the appropriate `plist` file! https://github.com/mathiasbynens/dotfiles/issues/305#issuecomment-30102827 Ref. ... — committed to wileyj/dotfiles by wileyj 11 years ago
Guys, read carefully through the discussions above between Mat and I. You could’ve saved 2 hours. You need both commands in both the
ByHost
UUID-specific .plist, and the standard .plist. For the 3rd time, the prior is for which menu bar items you want to hide, the latter is for the menu items you want to keep.If you don’t, they won’t work. Plain and simple.