-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
# |