Skip to content
/ dot Public

Various config files for the program I use (managed by gnu stow)

Notifications You must be signed in to change notification settings

abzrg/dot

Repository files navigation

Dotfiles

Update all MacOS software

softwareupdate --install --all

Keyboard repeat rate

# macos
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)
defaults write -g InitialKeyRepeat -int 13

Update locate database

# macos
sudo /usr/libexec/locate.updatedb
# if you've insatlled coreutils then you have to use the macos utilities
PATH=/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin  sudo /usr/libexec/locate.updatedb

finally to use locate you should use the macos version of locate, located in /usr/bin/locate

Disable font smoothing (make alacritty less bold)

Run the following

defaults -currentHost write -g AppleFontSmoothing -int 0

and then restart the machine.

Android file transfer

brew install whoozle-android-file-transfer
# privacy > allow

Conflict between moreutils and parallel

# src: https://superuser.com/a/1537888

brew unlink parallel
brew install moreutils
brew unlink moreutils
brew install parallel
brew link --overwrite moreutils
brew unlink parallel
brew link --overwrite parallel