blob: 102725a6e5e4778b92d43b4bf11d58b1a892e3c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
---
title: How I like my macOS
date: 2020-08-27
---
{% extends 'templates/base.html' %}
{% block body %}
<nav>
<a href='/'>> 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 %}
|