summaryrefslogtreecommitdiff
path: root/src/howto-mac.thrust
diff options
context:
space:
mode:
authorEthel Morgan <eth@ethulhu.co.uk>2020-08-27 21:25:15 +0100
committerEthel Morgan <eth@ethulhu.co.uk>2020-08-27 21:25:15 +0100
commit7bc95c9b59be20401cc97bc929c24d59b9703990 (patch)
treedd2c6fc96f525e08176ca06a50475bc1cbb358a3 /src/howto-mac.thrust
parent7e1ffeff0e2aa32665aaaebb7dfa70e1c56a432a (diff)
added a short "how to set up a Mac"
Diffstat (limited to 'src/howto-mac.thrust')
-rw-r--r--src/howto-mac.thrust55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/howto-mac.thrust b/src/howto-mac.thrust
new file mode 100644
index 0000000..102725a
--- /dev/null
+++ b/src/howto-mac.thrust
@@ -0,0 +1,55 @@
+---
+title: How I like my macOS
+date: 2020-08-27
+---
+{% extends 'templates/base.html' %}
+{% block body %}
+ <nav>
+ <a href='/'>&gt; index</a>
+ </nav>
+ <header>
+ <h1>{{ title }}</h1>
+ </header>
+ <article>
+ {% markdown %}
+A list of stuff I want in a fresh macOS install.
+
+## System Preferences
+
+- Text to Speech (in Accessibility)
+ - ⌥ ⎋ shortcut
+ - High WPM
+ - Download Samantha voice
+- Keyboard
+ - Layout is Colemak.
+ - Enable Emoji viewer
+ - Caps is Escape.
+ - Disable spelling corrections.
+- Trackpad
+ - Click to drag
+ - 3-finger drag (in Accessibility)
+- Hot corners
+ - Lower left: _Show Desktop_
+ - Lower right: _Notification Center_
+ - Upper right: _Mission Control_
+
+## Misc stuff
+
+- Week numbers in Calendar:
+ - Preferences, Advanced, _Show week numbers_.
+- Plain text in TextEdit:
+ - Preferences, switch from _Rich text_ to _Plain text_.
+
+## Homebrew
+
+```sh
+$ brew install \
+ entr \
+ jq \
+ pre-commit \
+ ripgrep \
+ tmux
+```
+ {% endmarkdown %}
+ </article>
+{% endblock %}