Skip to content

kekemu/mac-os-terminal-env

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Mac OS terminal env setup script

Notice

  • It needs iTerm2 version at least v3.3.x above.
  • The whole process takes about three of four minutes... or more. (It depends on your environments.)
    • At the end of setup process, it'll tries to execute Python3 script that works on iTerm2 to change font and color preset.
    • It needs Python3 runtime environment for iTerm2, and iTerm will starts to download it.
    • After downloading, the python script will starts automatically.

Usage

  • After git-cloning or download as a ZIP file
    cd ${mac-os-terminal-env-dir} && ./term_env_imp.sh
    
  • Or Just C&P down below
    PREV_WD=$(pwd);
    mkdir -p /tmp/term_set &&\
    cd /tmp/term_set &&\
    wget "https://github.com/kekemu/mac-os-terminal-env/archive/master.zip" &&\
    tar xzvf master.zip &&\
    cd mac-os-terminal-env-master &&\
    ./term_env_imp.sh &&\
    cd "$PREV_WD" &&\
    rm -rf /tmp/term_set