Ghostty + Zoxide + Yazi + Oh-My-Zsh 完整配置
- Ghostty - 现代化 GPU 加速终端模拟器
- Zoxide - 智能目录跳转工具(cd 的智能替代)
- Yazi - 快速终端文件管理器
- Oh-My-Zsh - Zsh 配置框架
| :root { | |
| --heng-fa-chuen: #b51921; | |
| --tai-koo: #b2103e; | |
| --kowloon-bay: #c41832; | |
| --tseung-kwan-o: #ef342a; | |
| --wui-kai-sha: #a84d18; | |
| --po-lam: #f68f26; | |
| --sai-wan-ho: #faca07; | |
| --disneyland-resort: #07594a; | |
| --skek-kip-mei: #4ba946; |
Taken from zerotier forum here
You have to access your Synology NAS with ssh. To enable SSH go to: Control Panel -> Terminal & SNTP.
First you have to install Entware-ng. It is a packet manager for devices like Synology NAS and many others.
Here is the instruction for Synology NAS. So just follow it. https://github.com/Entware-ng/Entware-ng/wiki/Install-on-Synology-NAS
| #! /bin/sh | |
| case "$1" in | |
| start) | |
| if ( pidof zerotier-one ) | |
| then echo "ZeroTier-One is already running." | |
| else | |
| echo "Starting ZeroTier-One" ; | |
| /opt/bin/zerotier-one -d ; | |
| echo "$(date) Started ZeroTier-One" >> /opt/var/log/zerotier-one.log ; |