Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@taking
Last active February 6, 2021 15:25
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save taking/9d24f1dec98b779eac44ceab24f6b5d2 to your computer and use it in GitHub Desktop.
Save taking/9d24f1dec98b779eac44ceab24f6b5d2 to your computer and use it in GitHub Desktop.
2018-10-14 Updated
Xee
Wunderlist
VOX
Visual Studio Code
Typora
Translate Tab
TotalFinder
Sourcetree
simplenote
RocketFuel
Reeder
qbittorrent
PopClip
Pixelmator Pro
PDF Expert
Paste
OnyX
MS Office
Magnet
Keka
karabiner-EventViewer
Karabiner-Elements
Jump Desktop
Itsycal
Intellij IDEA
IINA
Hyper
ForkLift
FilePane
Endurance
Dropbox
Discord
Dash
CloudApp
CLion
CleanMyMac X
Chrome
Checkor
Boostnote
Boom 3D
Bitwarden
Bartender 3
Allkdic
Alfred 3
Airmail 3
Agenda
Adgaurd
한컴오피스 한글 2014 VP 뷰어
카카오톡
# Taps
tap "homebrew/core"
tap "homebrew/cask"
tap "homebrew/bundle"
# Application Path
cask_args appdir: "/Applications"
# Binaries/Libraries
brew "coreutils" # Install GNU Core Utilities
brew "asciinema" # Terminal Record
brew "neovim" # NeoVim
brew "node", args: ["without-npm"] # non-install npm
brew "yarn" # npm replacement yarn
brew "zsh" # zsh Shell
brew "git"
brew "mackup" # MacBackup
brew "wget"
brew "youtube-dl" # Youtube Download Cli
brew "x264"
# Applications
cask "boostnote" # 마크다운 노트
cask "simplenote" # 노트 동기화(Win,Mac,Linux,Mobile)
cask "google-chrome"
cask "cloudapp" # Storage, Capture
cask "discord"
cask "qbittorrent"
cask "dropbox"
cask "bitwarden" # 비밀번호 관리
cask "iina" # 비디오 플레이어
cask "vox" # 오디오 플레이어
cask "java" # 자바, 로그인 요구
cask "miniconda" # 가상 설정, 로그인 요구
cask "karabiner-elements"
#cask "keka" # 압축 유틸, 에러 발생, 수동 설치 필요
cask "sourcetree"
cask "hyper" # 터미널 앱
cask "itsycal"
cask "visual-studio-code"
cask "intellij-idea"
cask "clion"
#cask "onyx" # 에러 발생, 수동 설치 필요
# fonts
cask 'homebrew/cask-fonts/font-d2coding'
cask 'homebrew/cask-fonts/font-hack'
cask 'homebrew/cask-fonts/font-meslo-lg'
cask 'homebrew/cask-fonts/font-meslo-for-powerline'
cask 'homebrew/cask-fonts/font-nanumgothic'
#!/bin/sh
## taking.kr (webmaster@taking.kr)
## 2018-10-14
cat <<EOT > /etc/resolv.conf
# Google DNS
nameserver 8.8.8.8
nameserver 8.8.4.4
# KT
;nameserver 168.126.63.1
;nameserver 168.126.63.2
# LG Uplus
;nameserver 180.182.54.1
;nameserver 210.94.0.73
EOT
echo 'Google DNS Changed OK!'
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap homebrew/bundle
echo 'Homebrew Installed OK!'
echo 'Brewfile Package Installing..'
cd $HOME/Downloads/ && wget BrewFile https://gist.githubusercontent.com/taking/9d24f1dec98b779eac44ceab24f6b5d2/raw/5a14ba522a654427a83df5b65c2722c092b399f0/Brewfile
brew bundle Brewfile
echo 'Brewfile Package Installed OK!'
cat <<EOT >> /etc/shells
/usr/local/bin/zsh
EOT
echo '/usr/local/bin/zsh Added OK!'
chsh -s `which zsh`
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
git clone https://github.com/powerline/fonts.git && ./fonts/install.sh
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/djui/alias-tips.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/alias-tips
echo 'zsh Installed OK!'
cd $HOME && mv .zshrc .zshrc_backup
wget https://gist.githubusercontent.com/taking/1a03b19d580dda6376300d865b19b443/raw/db6dfe56088d8f12810da874b6f6d68108671275/.zshrc
echo 'oh-my-zsh Installed OK!'
source ~/.zshrc
@taking
Copy link
Author

taking commented Oct 13, 2018

brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')

@taking
Copy link
Author

taking commented Feb 6, 2021

ARM 기반의 '애플 실리콘' 프로세서에선 다음과 같이 경로(/opt/homebrew)로 분류가 되므로, Oh-My-Zsh 를 사용하는 경우 .zshrc 에 export 해줘야한다.

    # On ARM macOS, this script installs to /opt/homebrew only
    HOMEBREW_PREFIX="/opt/homebrew"
    HOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}"

export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment