Add new iTerm2 themes and configuration files

- Added 'ayu Light.itermcolors' and 'ayu Mirage.itermcolors' themes for iTerm2 with complete color configurations.
- Created 'Alfred-Preferences.plist' for Alfred app preferences.
- Added 'Moom.plist' for Moom app preferences.
- Introduced 'Preferences.sublime-settings' for Sublime Text with customized settings including themes, font, and file exclusions.
- Updated zshenv to dynamically set HOMEBREW_CASK_OPTS for application directory.
- Removed obsolete Brewfile from the bootstrap directory.
This commit is contained in:
Philip Henning 2025-06-25 08:47:36 +02:00
parent 8ecd511397
commit bca9970477
15 changed files with 1472 additions and 12 deletions

23
bootstrap/README.md Normal file
View file

@ -0,0 +1,23 @@
# Bootstrap
## Get "data" Value from defaults
1. Export the defaults
```shell
defaults export com.jordanbaird.Ice -
```
2. Copy the base64 encoded data to a new file (`base64`), remove all whitespace, save it
3. Run this command to convert the data to hex
```shell
cat ./base64| base64 -d | xxd -p | tr -d '\n' > ./hex
```
4. Copy the whole hex data and use it like the following with defaults:
```shell
defaults write com.jordanbaird.Ice MenuBarAppearanceConfigurationV2 -data <hex data>
```
## Export plist file
```shell
defaults export com.jordanbaird.Ice ~/.files/config/plist/Ice.plist
```