Initial Setup

Created at: 2024-11-05

Problems:

Swap Command key for Ctrl key (maybe, I'm not doing it now.)

Go to:

And swap ctrl for cmd.

Get rid of the annoying Dock

On the terminal:

defaults write com.apple.dock autohide -bool true && killall Dock
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock
defaults write com.apple.dock no-bouncing -bool TRUE && killall Dock

Get rid of annoying hot corners

On a terminal:

defaults write com.apple.dock wvous-tl-corner -int 0
defaults write com.apple.dock wvous-tr-corner -int 0
defaults write com.apple.dock wvous-bl-corner -int 0
defaults write com.apple.dock wvous-br-corner -int 0
killall Dock

If that didn't work, go through the GUI

Step 1. Click on the Apple Menu. Step 2. Go to "System Settings". Step 3. Click on "Desktop & Dock". Step 4. Choose "Hot Corners" at the bottom. Setp 5. Set every corner to a dash - which does nothing.

Update the terminal app shell

  1. Go to the terminal app, press "cmd + ," to open settings.
  2. Change "shells open with" to use /bin/bash.

Install brew

Go to the website and install it.

Install dev tools

export PATH=/opt/homebrew/bin:$PATH

brew install \
    neovim \
    git \
    tree \
    font-liberation-nerd-font \
    fd \
    rg \
    ripgrep \
    terminal-notifier \
    fzf \
    python \
    bear \
    ctags \
    stow \
    bash \
    alacritty \
    tmux \
    choose-gui \
    universal-ctags \
    coreutils

brew install firefox
brew install --cask nikitabobko/tap/aerospace
brew install --cask betterdisplay

Notes:

  1. Allow terminal-notifier to send notifications (type notifications in the system settings page). Also set the config to not group!

Install My dotfiles

~/workspace/dotfiles/scripts/dotfiles.sh install

Note: Change the open_github_file.lua plugin to include the prefix to exclude.

Change default shell to bash

MacOs comes with zsh by default, which isn't a great shell. The bash version it comes with is outdated, so we download a new one with brew

chsh -s /opt/homebrew/bin/bash

# Symlink .bashrc to .bash_profile
ln -s ~/.bashrc ~/.bash_profile

# Just reboot and you'll get the new shell
sudo reboot now

Also change from zsh to bash in:

Install Plug (neovim package manager)

Just follow the website instructions to get the curl script.

Basic nice things

Go to Settings - Keyboard and configure:

# Increase key-repeat
defaults write -g KeyRepeat -int 2
defaults write -g InitialKeyRepeat -int 15

# Remove font smoothing
defaults -currentHost write -g AppleFontSmoothing -int 0

# Disable the sound effects on boot
sudo nvram SystemAudioVolume=" "

# Disable automatic termination of inactive apps
defaults write NSGlobalDomain NSDisableAutomaticTermination -bool true

sudo reboot now

Download HomeRow

Change the shortcuts for:

Adjust mouse speed (if needed)

Go to "Mouse" on settings. Click on "advanced" and remove the pointer acceleration. This will enable you to go faster.

Adjust monitor (if needed)

On better display, follow this guide:

https://github.com/waydabber/BetterDisplay/wiki/Fully-scalable-HiDPI-desktop

I have to set my home monitor to ~86% resolution. Note: You might have to close your macos lid for the black gaps on the side to go away!!!

Vimum

Add this mapper rule:

map q removeTab

Set up shortucts for firefox

Sadly because I have to use cmd instead of ctrl, I have to change Firefox's shortcuts.

System Settings -> Keyboard -> Shortcuts -> App shortcuts

Add an entry for Firefox with these settings:

Reload This Page -> ctrl+r New Tab -> ctrl+t Close Tab -> ctrl+w Reopen Closed Tab -> ctrl+shift+t

Optional (I'm not using this currently): Get an app (free and OS) Called CheatSheet, and with that you can see all the shortcuts used by the app, and if you make a rule in the Settings->Keyboard->Shortcuts using the exact text given in CheatSheet it will change it to what you select..

Set up shortcuts for grey mode.

Pre-setup: Enable xcode command line tools:

xcode-select --install
# Enable command line tools
sudo xcode-select --switch /Library/Developer/CommandLineTools
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
cd /tmp/
git clone --recurse-submodules https://github.com/marcelofern/grayscale

cd grayscale/
make

# Move the app to the documents folder
mv build/Build/Products/Release/grayscale.app ~/Documents

grayscale.app will be placed into build/Build/Products/Release.

Open it with

open grayscale.app

Automatically open grayscale at login by adding it to the list in System Settings > General > Login Items