Rectangle

Rectangle

Configuration is stored using NSUserDefaults, meaning it is stored in the following location: ~/Library/Preferences/com.knollsoft.Rectangle.plist and there is also Export/Import functionality using JSON.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
defaults read com.knollsoft.Rectangle
# defaults delete, etc

# show shortcuts to increase and decrease window size 
defaults read com.knollsoft.Rectangle smaller
defaults read com.knollsoft.Rectangle larger

# delete shortcuts
defaults write com.knollsoft.Rectangle smaller '{}'
defaults write com.knollsoft.Rectangle larger '{}'

Shell » Alias Managers

Out of the two cross-platform alias managers JanDeDobbeleer/aliae and arctic-hen7/bonnie, I have chosen aliae, primarily due to its documentation, which makes a world of difference.

On macOS, the installation process consists of three steps.

brew install jandedobbeleer/aliae/aliae
# create .aliae.yaml
# add to .zshrc.d file with the following content: eval "$(aliae init zsh)"
date 16. Jul 2023 | modified 29. Dec 2023
filename: macOS » dotfiles