vi ~/.zshrc
빠르게 터미널 환경을 변경할 수 있도록 설정
alias za="arch -arch arm64e /bin/zsh"
alias zx="arch -arch x86_64 /bin/zsh"
source ~/.zshrc
Powerlevel10k에서 커스텀 프롬프트를 만든다.
open ~/.p10k.zsh
prompt_example 찾아 밑에 아래 코드를 복사 한다.
function prompt_arch() {
if [[ $(arch) == "i386" ]]; then
p10k segment -t '🐢'
fi
}
function instant_prompt_arch() {
prompt_arch
}
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
를 찾아 arch
를 추가한다.
x86_64환경이 아무래도 더 느리다.
typeset -g POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(
# os_icon # os identifier
dir # current directory
vcs # git status
prompt_char # prompt symbol
**arch**
)