Skip to content

Commit

Permalink
misc(darwin): add setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
himkt committed Dec 19, 2024
1 parent ac6a932 commit a22fba8
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions darwin/bin/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/bash

# https://macos-defaults.com/

# keyboard
#
# https://linkarzu.com/posts/2024-macos-workflow/macos-keyrepeat-rate/
#
# * (todo) remap caps to control
# * key repeat rate
# * delay until repeat
#
defaults write -g KeyRepeat -int 2
defaults write -g InitialKeyRepeat -int 20

# dock
#
# autohide = true
# show-recents = false
# orientation = bottom
#
defaults write com.apple.dock orientation -string bottom
defaults write com.apple.dock autohide -bool true
killall Dock

# menu bar
#
# only show = [Wi-Fi, VPN, Battery]
#

# finder
#

# login window
#
# guest login = false
#

0 comments on commit a22fba8

Please sign in to comment.