MacOS Customization
MacOS:
Disk
Repair disk using:
Alternatively, using CLI:
- boot into a single-user mode: press and hold the Command+S keys while MacOS boots.
- use diskutil and fsck
Optimizing input
- Differentiate touch pad and mouse scroll direction using scroll reverser.
- use of keyboard
- use of keyboard in finder
Running Apps on Mac
For any software development install Command Line Tools:
xcode-select --install
Then:
Also relevant:
Terminal Peculiarities
> stty -a
speed 38400 baud; 48 rows; 125 columns;
lflags: icanon isig iexten echo echoe echok echoke -echonl echoctl
-echoprt -altwerase -noflsh -tostop -flusho pendin -nokerninfo
-extproc
iflags: -istrip icrnl -inlcr -igncr ixon -ixoff ixany imaxbel iutf8
-ignbrk brkint -inpck -ignpar -parmrk
oflags: opost onlcr -oxtabs -onocr -onlret
cflags: cread cs8 -parenb -parodd hupcl -clocal -cstopb -crtscts -dsrflow
-dtrflow -mdmbuf
cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = <undef>;
eol2 = <undef>; erase = ^?; intr = ^C; kill = ^U; lnext = ^V;
min = 1; quit = ^\; reprint = ^R; start = ^Q; status = ^T;
stop = ^S; susp = ^Z; time = 0; werase = ^W;
The above interferes with AWS SM. Workaround:
# Allow for Ctrl+S, Ctrl+Y to be used in SSM
stty stop undef;stty dsusp undef