├── .github └── workflows │ └── update_time.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── Brewfile ├── Proxy ├── Clash │ ├── T-Mihomo.yaml │ └── T-Smart.yaml ├── Loon │ └── T-Config.conf ├── QuantumultX │ └── T-Config.conf ├── Rules │ ├── T-Direct.list │ ├── T-Direct.yaml │ ├── T-EmbyDirect.list │ ├── T-EmbyDirect.yaml │ ├── T-EmbyGlobal.list │ ├── T-EmbyGlobal.yaml │ ├── T-Global.list │ └── T-Global.yaml └── Shadowrocket │ └── T-Config.conf ├── Tools ├── linux.sh └── readme.md ├── default.json ├── icon ├── 115.png ├── 123.png ├── alidrive.png ├── embydada.jpg ├── emos.jpg ├── icon.json ├── lily.jpg ├── nijigen.jpg ├── nubebelle.jpg ├── nya.jpg ├── okemby.jpg ├── quark.png ├── younopro.jpg ├── younopuls.jpg ├── yunhai.jpg ├── yunhaipron.jpg └── zspace.png ├── license ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json └── zshrc ├── linux-debian.zshrc └── macos.zshrc /.github/workflows/update_time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/.github/workflows/update_time.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # General 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | node_modules 6 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /Proxy/Clash/T-Mihomo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Clash/T-Mihomo.yaml -------------------------------------------------------------------------------- /Proxy/Clash/T-Smart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Clash/T-Smart.yaml -------------------------------------------------------------------------------- /Proxy/Loon/T-Config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Loon/T-Config.conf -------------------------------------------------------------------------------- /Proxy/QuantumultX/T-Config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/QuantumultX/T-Config.conf -------------------------------------------------------------------------------- /Proxy/Rules/T-Direct.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-Direct.list -------------------------------------------------------------------------------- /Proxy/Rules/T-Direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-Direct.yaml -------------------------------------------------------------------------------- /Proxy/Rules/T-EmbyDirect.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-EmbyDirect.list -------------------------------------------------------------------------------- /Proxy/Rules/T-EmbyDirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-EmbyDirect.yaml -------------------------------------------------------------------------------- /Proxy/Rules/T-EmbyGlobal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-EmbyGlobal.list -------------------------------------------------------------------------------- /Proxy/Rules/T-EmbyGlobal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-EmbyGlobal.yaml -------------------------------------------------------------------------------- /Proxy/Rules/T-Global.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-Global.list -------------------------------------------------------------------------------- /Proxy/Rules/T-Global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Rules/T-Global.yaml -------------------------------------------------------------------------------- /Proxy/Shadowrocket/T-Config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Proxy/Shadowrocket/T-Config.conf -------------------------------------------------------------------------------- /Tools/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/Tools/linux.sh -------------------------------------------------------------------------------- /Tools/readme.md: -------------------------------------------------------------------------------- 1 | **系统优化一键脚本** 2 | 3 | ```sh 4 | bash <(curl -s https://dot.theojs.cn/Tools/linux.sh) 5 | ``` 6 | -------------------------------------------------------------------------------- /default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/default.json -------------------------------------------------------------------------------- /icon/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/115.png -------------------------------------------------------------------------------- /icon/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/123.png -------------------------------------------------------------------------------- /icon/alidrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/alidrive.png -------------------------------------------------------------------------------- /icon/embydada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/embydada.jpg -------------------------------------------------------------------------------- /icon/emos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/emos.jpg -------------------------------------------------------------------------------- /icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/icon.json -------------------------------------------------------------------------------- /icon/lily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/lily.jpg -------------------------------------------------------------------------------- /icon/nijigen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/nijigen.jpg -------------------------------------------------------------------------------- /icon/nubebelle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/nubebelle.jpg -------------------------------------------------------------------------------- /icon/nya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/nya.jpg -------------------------------------------------------------------------------- /icon/okemby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/okemby.jpg -------------------------------------------------------------------------------- /icon/quark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/quark.png -------------------------------------------------------------------------------- /icon/younopro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/younopro.jpg -------------------------------------------------------------------------------- /icon/younopuls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/younopuls.jpg -------------------------------------------------------------------------------- /icon/yunhai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/yunhai.jpg -------------------------------------------------------------------------------- /icon/yunhaipron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/yunhaipron.jpg -------------------------------------------------------------------------------- /icon/zspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/icon/zspace.png -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - simple-git-hooks 3 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>s-theo/dotfiles"] 3 | } 4 | -------------------------------------------------------------------------------- /zshrc/linux-debian.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/zshrc/linux-debian.zshrc -------------------------------------------------------------------------------- /zshrc/macos.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-theo/dotfiles/HEAD/zshrc/macos.zshrc --------------------------------------------------------------------------------