# oh-my-zsh **Repository Path**: ShqWW/oh-my-zsh ## Basic Information - **Project Name**: oh-my-zsh - **Description**: zsh备份 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-08 - **Last Updated**: 2025-04-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 1. 安装并切换ZShell 直接用apt命令进行安装: ``` apt-get install zsh ``` 切换zsh: ``` chsh -s /bin/zsh ``` 切换回bash: ``` chsh -s /bin/bash ``` ### 2. 安装Oh My Zsh 使用如下命令克隆Oh My Zsh项目: ``` git clone https://gitee.com/bosswangs/oh-my-zsh.git ~/.oh-my-zsh ``` 复制到ZShell文件夹下: ``` cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc ``` 编辑`~/.zshrc`文件中主题的位置(ZSH_THEME="xxx"),修改为: ``` echo -e "\e[33m φ(≧ω≦*)♪\e[0m \e[36m Welcome to\e[0m \e[36m Server !!\e[0m" ZSH_THEME="mytheme" ``` 并将以下注释取消以禁用自动更新: ``` # zstyle ':omz:update' mode disabled # disable automatic updates ```