[Macbook Settings] Macbook

4 minute read


Desktop

  • Right Click (Show View Options)
    • Icon Size: 64 x 64 => 32 x 32

System Settings

Apperance

  • Apperance: Light => Dark

    Accessibility

  • Pointer Control
    • Trackpad Options
      • Use trackpad for dragging: Off => On
      • Dragging Style: Without Drag Lock => Three Finger Drag

Battery

  • Energy Mode
    • On battery: Automatic => Low Power

Control Center

  • Other Modules
    • Battery
      • Show Pecentage: Off => On
  • Menu Bar Only
    • Clock Options
      • Show the day of the week: On => Off
    • Spotlight
      • Show in Menu Bar => Don’t Show in Menu Bar

Desktop & Dock

  • Dock
    • Position on screen: Bottom => Left
    • Minimize windows into application icon: Off => On
    • Automatically hide and show the Dock: Off => On
  • Mission Control
    • Automatically rearrange Spaces based on most recent use: On => Off

Lock Screen

  • Turn display off on battery when inactive: For 2 minutes -> For 10 minutes

Trackpad

  • Point & Click
    • Look up & data detectors: Force Click with One Finger => Tap with Three Fingers
  • More Gestures
    • Mission Control: Swipe Up with Three Fingers => Swipe Up with Four Fingers

Keyboard

  • Keyboard Shortcuts
    • Turn Dock hiding on/off: click => unclick(비활성화)
    • Input Sources
      • Select the previous input source: ^Space -> ⌘Space
      • Show Spotlight search: ⌘Space -> ^Space

Finder (Settings)

General

  • New Finder windows show: Recents => {user}

Advanced

  • Show all filename extensions: Off => On
  • Keep folders on top:
    • In windows when sorting by name: Off => On
  • Recents: On => Off
  • Applications: On => Off
  • {user}: Off => On
  • {user}’s Macbook {Pro}: Off => On
  • Tags: On => Off

Toolbar

  • Right click on Toolbar
    • Customize Toolbar
    • Drag Airdrop to Toolbar

Finder (View)

  • Show Path Bar: Off => On

Brew

Installation of Brew

  • https://brew.sh/
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

echo >> /Users/{user_name}/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/{user_name}/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

Installation of Applications using Brew

brew install --cask iterm2
brew install --cask obsidian
brew install --cask google-chrome
brew install --cask visual-studio-code
brew install --cask rectangle
brew install --cask notion
brew install --cask dbeaver-community
brew install --cask sublime-text
brew install --cask orbstack
brew install --cask google-cloud-sdk # need to be connected to khc-wlan
brew install --cask intellij-idea-ce
brew install mas
brew install pyenv # see pyenv configuration
brew install pyenv-virtualenv # see pyenv configuration
brew install k9s
brew install kubectx
brew install docker
brew install openjdk@17 # change version if necessary
brew install scala@3.3 # change version if necessary

brew install zsh-syntax-highlighting
echo "source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc

brew install zsh-autosuggestions
echo "source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc

Installation of Kakaotalk using Brew(mas)

mas search kakaotalk # 869223134
mas install 869223134

# mas search kakaowork # 1505289743
# mas install 1505289743

Installation of Runcat using Brew(mas)

mas search runcat
mas install 1429033973

Installation of Screen Cursor using Brew(mas)

mas search "highlight&mark"
mas install 1577211880

Iterm2

Iterm2 SEttings

  • Appearance
    • Theme: Regular => Minimal
  • Profile
    • Color Presets: Dark Background
    • Status bar enabled: Off => On
      • Configure Status Bar
    • Keys
      • Key Mappings
        • Presets: Natural Text Editing

Installation of Oh-My-Zsh

# https://ohmyz.sh/
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Installation of Powerlevel10k & Settings

# https://github.com/romkatv/powerlevel10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"

vi ~/.zshrc
# ZSH_THEME="robbyrussell" # AS-IS
ZSH_THEME="powerlevel10k/powerlevel10k"
# turn iterm off and on

# install fonts
# turn iterm off and on
# Lean vs Classic (free choice)
# Unicode
# 256 colors
# No vs 24-hour format (free choice)
# One line vs Two lines (free choice)
# Compact
# Few icons vs Many icons (free choice)
# Concise vs Fluent (free choice)
# Transient Prompt? (free choice)

# verbose

Adding Prefix Icon(Strawberry) in Iterm2

  • ~/.p10k.zsh
# Two lines의 경우
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=🍓

# Many icons의 경우
typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION=🍓

Pyenv

Configuration

# add the followings in ~/.zshrc
# did not install i386 terminal yet
if [ $(arch) = "i386" ]; then
    # eval "$(/usr/local/bin/brew shellenv)"
    # alias brew86="arch -x86_64 /usr/local/bin/brew"
    # alias pyenv86="arch -x86_64 pyenv"
    # alias python3="/Users/ed.a/.pyenv-i386/shims/python3"
    # export PYENV_ROOT=~/.pyenv-i386
    # export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl@1.1/lib/
else
    alias python3="/Users/ed.a/.pyenv/shims/python3"
    # eval "$(/opt/homebrew/bin/brew shellenv)"
    # export LIBRARY_PATH=$LIBRARY_PATH:/opt/homebrew/opt/openssl@1.1/lib/
fi

if command -v pyenv 1>/dev/null 2>&1; then
    if [ $(arch) = "i386" ]; then
        # export PATH="$HOME/.pyenv-i386/bin:$PATH"
        # eval "$(pyenv86 init -)"
        # eval "$(pyenv86 virtualenv-init -)"
    else
        export PATH="$HOME/.pyenv/bin:$PATH"
        eval "$(pyenv init -)"
        eval "$(pyenv virtualenv-init -)"
    fi
fi

Virtualenv

pyenv install 3.12.9 # change version if necessary
pyenv virtualenv 3.12.9 .test # if needed
pyenv virtualenv 3.12.9 .build # if needed

JAVA

Configuration

  • The CLI configuration will show when installing using brew
# For the system Java wrappers to find this JDK, symlink it with
sudo ln -sfn /opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdk # change version if necessary

# add the followings in ~/.zshrc
export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH" # change version if necessary

# For compilers to find openjdk@17 you may need to set
export CPPFLAGS="-I/opt/homebrew/opt/openjdk@17/include" # change version if necessary

# Scala
export PATH="/opt/homebrew/opt/scala@3.3/bin:$PATH" # change version if necessary

Visual-Studio-Code

  • Use Settings Sync Extension
  • Modify Changes in settings.json

Safari (Settings)

General

  • Homepage: https://www.apple.com/startpage => “”
  • Open “safe” files after downloading: Off => On

View

  • Allows Show Tab Bar

Advanced

  • Default encoding: Western (ISO Latin1) => Unicode(UTF-8)

Ref