From a22fba8afd7c940db40da0b5758a7d14abfbfb18 Mon Sep 17 00:00:00 2001 From: himkt Date: Thu, 19 Dec 2024 23:27:36 +0900 Subject: [PATCH] misc(darwin): add setup script --- darwin/bin/setup.sh | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 darwin/bin/setup.sh diff --git a/darwin/bin/setup.sh b/darwin/bin/setup.sh new file mode 100644 index 00000000..13f1d39d --- /dev/null +++ b/darwin/bin/setup.sh @@ -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 +#