chore(brew): dump new findings

This commit is contained in:
Michele Cereda
2024-03-11 23:24:24 +03:00
parent 2b6e244b06
commit b757d94e10
2 changed files with 10 additions and 2 deletions

View File

@@ -42,9 +42,9 @@ brew "glibc" if OS.linux?
# set arguments for all 'brew install --cask' commands
cask_args appdir: "~/Applications", require_sha: true
# 'brew install --cask'
cask "aldente"
cask "bluesnooze"
cask "desmume"
cask "docker"
cask "firefox"

View File

@@ -53,7 +53,7 @@ defaults write 'com.apple.desktopservices' 'DSDontWriteNetworkStores' true
# Delete values.
# This resets changes done previously.
# This resets changes done previously (a.k.a. restores defaults).
# defaults delete 'domain'
# defaults delete 'domain' 'key'
defaults delete 'com.apple.dock'
@@ -66,6 +66,14 @@ defaults delete 'com.apple.dock' 'springboard-columns'
defaults write 'com.apple.dock' 'ResetLaunchPad' -bool 'TRUE'
```
```sh
# Hide Bluesnooze's menu bar icon.
defaults write 'com.oliverpeate.Bluesnooze' 'hideIcon' -bool true && killall 'Bluesnooze'
# Restore Bluesnooze's menu bar icon.
defaults delete 'com.oliverpeate.Bluesnooze' 'hideIcon' && killall 'Bluesnooze'
```
> **Note:** once set something related to the dock, one'll probably need to restart it with `killall Dock`.
## Further readings