├── .gitee └── issue_template.md ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml └── workflows │ ├── auto-sync.yml │ └── build-docs.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── ChangeMirrors.sh ├── DockerInstallation.sh ├── LICENSE ├── README.md ├── docs ├── assets │ ├── css │ │ ├── orama-ui.css │ │ ├── tdesign.min.css │ │ └── tdesign.min.css.map │ ├── favicon.ico │ ├── images │ │ ├── brand │ │ │ ├── command │ │ │ │ ├── docker-dark.png │ │ │ │ ├── docker-light.png │ │ │ │ ├── linux-dark.png │ │ │ │ └── linux-light.png │ │ │ ├── dark │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── 6.jpg │ │ │ ├── light │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ └── svg │ │ │ │ ├── 1.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── logo-dark.svg │ │ │ │ └── logo-light.svg │ │ ├── icon │ │ │ ├── almalinux.svg │ │ │ ├── alpine.png │ │ │ ├── anolis.png │ │ │ ├── arch-linux.ico │ │ │ ├── armbian.png │ │ │ ├── centos.svg │ │ │ ├── debian.svg │ │ │ ├── deepin.png │ │ │ ├── fedora.ico │ │ │ ├── gentoo.svg │ │ │ ├── kali-linux.svg │ │ │ ├── linux-mint.ico │ │ │ ├── linux.svg │ │ │ ├── netlify.svg │ │ │ ├── nixos.svg │ │ │ ├── opencloudos.png │ │ │ ├── openeuler.ico │ │ │ ├── openkylin.ico │ │ │ ├── opensuse.svg │ │ │ ├── proxmox.svg │ │ │ ├── raspberry-pi.png │ │ │ ├── red-hat-enterprise-linux.svg │ │ │ ├── redhat.svg │ │ │ ├── rocky-linux.svg │ │ │ ├── ubuntu.svg │ │ │ └── zorin-os.png │ │ ├── logo.png │ │ ├── sponsor │ │ │ ├── 1panel.png │ │ │ ├── arcadia-dark.png │ │ │ ├── arcadia-light.png │ │ │ ├── bueryun.svg │ │ │ ├── businiaocdn.png │ │ │ ├── duotuyun-dark.svg │ │ │ ├── duotuyun-light.svg │ │ │ ├── fufuyun.png │ │ │ ├── ifdian.png │ │ │ ├── linfengyun-dark.png │ │ │ ├── linfengyun-light.png │ │ │ ├── qiaoxh-dark.svg │ │ │ ├── qiaoxh-light.svg │ │ │ ├── runxinyun.png │ │ │ ├── sutuoyun.svg │ │ │ ├── xinniaoyun.png │ │ │ ├── yuluyundun-dark.png │ │ │ ├── yuluyundun-light.png │ │ │ └── yunyoo.png │ │ └── support │ │ │ ├── jetbrains-dark.svg │ │ │ ├── jetbrains-light.svg │ │ │ ├── netlify-dark.png │ │ │ └── netlify-light.png │ └── js │ │ ├── common.js │ │ ├── component.js │ │ ├── components │ │ ├── mirrors-table │ │ │ ├── data.js │ │ │ └── index.js │ │ └── orama-ui │ │ │ ├── config.js │ │ │ ├── index-native.js │ │ │ └── index.js │ │ ├── modules │ │ ├── tdesign-theme.js │ │ ├── tdesign.min.js │ │ ├── tdesign.min.js.map │ │ └── vue.global.prod.js │ │ └── useThemeTransition.js ├── community │ └── index.md ├── index.md ├── mirrors │ └── index.md ├── other │ └── index.md ├── sponsor │ ├── index.md │ └── main.html ├── stylesheets │ ├── extra.css │ └── fonts │ │ └── SF-Mono-Regular.otf ├── theme │ ├── flag │ │ ├── AR.svg │ │ ├── AU.svg │ │ ├── BE.svg │ │ ├── BR.svg │ │ ├── CA.svg │ │ ├── CH.svg │ │ ├── CN.svg │ │ ├── CZ.svg │ │ ├── DE.svg │ │ ├── DK.svg │ │ ├── EE.svg │ │ ├── FR.svg │ │ ├── GB.svg │ │ ├── GR.svg │ │ ├── HK.svg │ │ ├── JP.svg │ │ ├── KE.svg │ │ ├── KR.svg │ │ ├── MY.svg │ │ ├── NL.svg │ │ ├── NZ.svg │ │ ├── RU.svg │ │ ├── SE.svg │ │ ├── SG.svg │ │ ├── TH.svg │ │ ├── TW.svg │ │ ├── US.svg │ │ ├── ZA.svg │ │ ├── world-map.svg │ │ └── world.svg │ ├── gitcode.svg │ ├── incompatible.svg │ ├── linuxmirrors.svg │ ├── main.html │ ├── netlify.svg │ ├── partials │ │ ├── comments.html │ │ ├── content.html │ │ ├── header.html │ │ ├── search.html │ │ └── toc.html │ ├── supported.svg │ └── unsupport.svg └── use │ └── index.md ├── giscus.json ├── mkdocs.yml └── requirements.txt /.gitee/issue_template.md: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | ## 1. 操作系统 21 | 22 | - [ ] `Debian` 23 | - [ ] `Ubuntu` 24 | - [ ] `Kali Linux` 25 | - [ ] `Linux Mint` 26 | - [ ] `Deepin` 27 | - [ ] `Zorin OS` 28 | - [ ] `Armbian` 29 | - [ ] `Proxmox VE` 30 | - [ ] `Raspberry Pi OS` 31 | - [ ] `Red Hat Enterprise Linux` 32 | - [ ] `Fedora` 33 | - [ ] `CentOS` 34 | - [ ] `Rocky Linux` 35 | - [ ] `AlmaLinux` 36 | - [ ] `openEuler` 37 | - [ ] `OpenCloudOS` 38 | - [ ] `openKylin` 39 | - [ ] `Anolis OS` 40 | - [ ] `openSUSE` 41 | - [ ] `Arch Linux` 42 | - [ ] `Alpine Linux` 43 | - [ ] `Gentoo` 44 | - [ ] `NixOS` 45 | 46 | ## 2. 处理器架构 47 | 48 | - [ ] `x86_64` `x86_32` 49 | - [ ] `arm64` `arm/v8` `arm/v7` `arm/v6` 50 | - [ ] `ppc64le` `s390x` 51 | - [ ] `Other` 52 | 53 | ## 3. 系统详细信息 54 | 55 | ``` 56 | 57 | ``` 58 | 59 | ## 4. 环境信息 60 | 61 | ``` 62 | 63 | ``` 64 | 65 | ## 5. 详细叙述你的问题 66 | ### (1) 具体问题 67 | A: 68 | 69 | 70 | ### (2) 详细的执行日志 71 | 72 | ``` 73 | 74 | ``` 75 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐞 上报错误 2 | description: Report bug 3 | labels: ["bug"] 4 | body: 5 | - type: dropdown 6 | id: os 7 | attributes: 8 | label: 操作系统 9 | options: 10 | - Debian 11 | - Ubuntu 12 | - Kali Linux 13 | - Linux Mint 14 | - Deepin 15 | - Zorin OS 16 | - Armbian 17 | - Proxmox VE 18 | - Raspberry Pi OS 19 | - Red Hat Enterprise Linux 20 | - Fedora 21 | - CentOS 22 | - Rocky Linux 23 | - AlmaLinux 24 | - openEuler 25 | - OpenCloudOS 26 | - openKylin 27 | - Anolis OS 28 | - openSUSE 29 | - Arch Linux 30 | - Alpine Linux 31 | - Gentoo 32 | - NixOS 33 | validations: 34 | required: true 35 | 36 | - type: dropdown 37 | id: architecture 38 | attributes: 39 | label: 处理器架构 40 | options: 41 | - x86_64 / x86_32 42 | - arm64 / arm/v8 / arm/v7 / arm/v6 43 | - ppc64le / s390x 44 | - 其它 45 | validations: 46 | required: true 47 | 48 | - type: textarea 49 | id: release 50 | attributes: 51 | label: 系统详细信息 52 | description: '请执行命令 `cat /etc/os-release`,并将输出结果粘贴在下方' 53 | render: 'shell' 54 | validations: 55 | required: true 56 | 57 | - type: input 58 | id: uname 59 | attributes: 60 | label: 环境信息 61 | description: '请执行命令 `uname -a`,并将输出结果粘贴在下方' 62 | validations: 63 | required: true 64 | 65 | - type: textarea 66 | id: what-happened 67 | attributes: 68 | label: 描述您遇到的问题 69 | validations: 70 | required: true 71 | 72 | - type: textarea 73 | id: logs 74 | attributes: 75 | label: 详细的执行日志 76 | placeholder: 日志内容 77 | render: 'shell' 78 | validations: 79 | required: true 80 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- 1 | name: 💡 功能请求与建议 2 | description: Feature request 3 | labels: ["enhancement"] 4 | body: 5 | - type: textarea 6 | id: content 7 | attributes: 8 | label: '描述您的功能请求或建议' 9 | validations: 10 | required: false 11 | -------------------------------------------------------------------------------- /.github/workflows/auto-sync.yml: -------------------------------------------------------------------------------- 1 | name: Sync to mirror repo 2 | on: 3 | push: 4 | branches: 5 | - main 6 | jobs: 7 | repo-sync: 8 | env: 9 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} 10 | dst_token: ${{ secrets.GITEE_TOKEN }} 11 | gitee_user: ${{ secrets.GITEE_USER }} 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v4 15 | with: 16 | persist-credentials: false 17 | - name: sync to gitee 18 | uses: Yikun/hub-mirror-action@master 19 | if: env.dst_key && env.dst_token && env.gitee_user 20 | with: 21 | src: github/SuperManito 22 | dst: gitee/SuperManito 23 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} 24 | dst_token: ${{ secrets.GITEE_TOKEN }} 25 | static_list: "LinuxMirrors" 26 | force_update: true -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- 1 | name: Build docs website 2 | on: 3 | push: 4 | branches: 5 | - master 6 | - main 7 | permissions: 8 | contents: write 9 | jobs: 10 | deploy: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - name: Configure Git Credentials 15 | run: | 16 | git config user.name github-actions[bot] 17 | git config user.email 41898282+github-actions[bot]@users.noreply.github.com 18 | - uses: actions/setup-python@v5 19 | with: 20 | python-version: 3.x 21 | - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV 22 | - uses: actions/cache@v4 23 | with: 24 | key: mkdocs-material-${{ env.cache_id }} 25 | path: .cache 26 | restore-keys: | 27 | mkdocs-material- 28 | - run: pip install -r ./requirements.txt 29 | - run: cp -rvf ./ChangeMirrors.sh ./docs/main.sh 30 | - run: cp -rvf ./DockerInstallation.sh ./docs/docker.sh 31 | - run: mkdocs gh-deploy --force 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | site/ 3 | dist/ 4 | node_modules 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | pnpm-debug.log* 15 | 16 | # Editor directories and files 17 | .idea 18 | *.suo 19 | *.ntvs* 20 | *.njsproj 21 | *.sln 22 | *.sw? 23 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | . 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 SuperManito 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/assets/css/orama-ui.css: -------------------------------------------------------------------------------- 1 | .orama-ui { 2 | -webkit-font-smoothing: antialiased; 3 | -moz-osx-font-smoothing: grayscale; 4 | font-family: var(--md-text-font); 5 | font-weight: 400; 6 | text-rendering: optimizeLegibility; 7 | vertical-align: baseline; 8 | -webkit-text-size-adjust: none; 9 | -moz-text-size-adjust: none; 10 | text-size-adjust: none; 11 | --orama-base-font-size: 18; 12 | 13 | --font-size-xxs: calc(10rem/var(--orama-base-font-size, 16)); 14 | --font-size-xs: calc(12rem/var(--orama-base-font-size, 16)); 15 | --font-size-sm: calc(14rem/var(--orama-base-font-size, 16)); 16 | --font-size-md: calc(16rem/var(--orama-base-font-size, 16)); 17 | --font-size-lg: calc(20rem/var(--orama-base-font-size, 16)); 18 | --font-weight-normal: 400; 19 | --font-weight-semibold: 600; 20 | --font-line-height-s: 1.25; 21 | --font-line-height-m: 1.5; 22 | --radius-xs: calc(6rem/var(--orama-base-font-size, 16)); 23 | --radius-s: calc(8rem/var(--orama-base-font-size, 16)); 24 | --radius-m: calc(12rem/var(--orama-base-font-size, 16)); 25 | --radius-l: calc(16rem/var(--orama-base-font-size, 16)); 26 | --radius-3xl: calc(40rem/var(--orama-base-font-size, 16)); 27 | --textarea-radius: calc(16rem/var(--orama-base-font-size, 16)); 28 | --spacing-2xs: calc(2rem/var(--orama-base-font-size, 16)); 29 | --spacing-xs: calc(4rem/var(--orama-base-font-size, 16)); 30 | --spacing-s: calc(8rem/var(--orama-base-font-size, 16)); 31 | --spacing-m: calc(12rem/var(--orama-base-font-size, 16)); 32 | --spacing-l: calc(16rem/var(--orama-base-font-size, 16)); 33 | --spacing-xl: calc(24rem/var(--orama-base-font-size, 16)); 34 | --spacing-2xl: calc(32rem/var(--orama-base-font-size, 16)); 35 | --spacing-3xl: calc(40rem/var(--orama-base-font-size, 16)); 36 | --textarea-shadow: var(--md-shadow-z1); 37 | 38 | --text-color-primary: #151515; 39 | --text-color-secondary: #838289; 40 | --text-color-tertiary: #99989d; 41 | --text-color-accent: var(--md-accent-fg-color); 42 | --text-color-inactive: #99989d; 43 | --text-color-reverse: #fff; 44 | --background-color-primary: #fbfbfb; 45 | --background-color-secondary: #fff; 46 | --background-color-tertiary: var(--md-accent-fg-color--transparent); 47 | --background-color-fourth: #efefef; 48 | --background-color-reverse: #000; 49 | --background-color-accent: var(--md-accent-fg-color); 50 | --border-color-primary: #dadada; 51 | --border-color-secondary: #efefef; 52 | --border-color-tertiary: #151515; 53 | --border-color-accent: var(--md-accent-fg-color); 54 | --icon-color-primary: #151515; 55 | --icon-color-secondary: #dadada; 56 | --icon-color-tertiary: #838289; 57 | --icon-color-inactive: #99989d; 58 | --icon-color-reverse: #fbfbfb; 59 | --shadow-color-primary: #fff; 60 | --button-text-color-primary: #fbfbfb; 61 | --button-text-color-secondary: #838289; 62 | --button-background-color-primary: var(--md-accent-fg-color); 63 | --button-background-color-secondary: hsla(240, 9%, 75%, 0.33); 64 | --button-background-color-secondary-hover: var(--md-accent-fg-color--transparent); 65 | --button-border-color-secondary: #dadada; 66 | --backdrop-background-color-primary: hsla(0, 0%, 98%, .7); 67 | --chat-button-border-color-gradientOne: transparent; 68 | --chat-button-border-color-gradientTwo: transparent; 69 | --chat-button-border-color-gradientThree: var(--md-accent-fg-color); 70 | --chat-button-border-color-gradientFour: var(--md-accent-fg-color); 71 | --chat-button-border-color-gradientFive: transparent; 72 | --chat-button-border-color-gradientSix: transparent; 73 | --chat-button-background-color-gradientOne: var(--md-accent-fg-color); 74 | --chat-button-background-color-gradientTwo: transparent; 75 | 76 | } 77 | 78 | .orama-ui *, 79 | .orama-ui:after, 80 | .orama-ui:before { 81 | box-sizing: border-box 82 | } 83 | 84 | [data-md-color-scheme="slate"] .orama-ui { 85 | --text-color-primary: #fbfbfb; 86 | --text-color-secondary: #dadada; 87 | --text-color-tertiary: #838289; 88 | --text-color-accent: var(--md-accent-fg-color); 89 | --text-color-inactive: #99989d; 90 | --text-color-reverse: #000; 91 | --background-color-primary: var(--md-default-bg-color--dark); 92 | --background-color-secondary: #1a1b20; 93 | --background-color-tertiary: var(--md-accent-fg-color--transparent); 94 | --background-color-fourth: #2e2e2e; 95 | --background-color-reverse: #fff; 96 | --background-color-accent: var(--md-accent-fg-color); 97 | --border-color-primary: #2e2e2e; 98 | --border-color-secondary: #151515; 99 | --border-color-tertiary: #afafb1; 100 | --border-color-accent: var(--md-accent-fg-color); 101 | --icon-color-primary: #fbfbfb; 102 | --icon-color-secondary: #dadada; 103 | --icon-color-tertiary: #838289; 104 | --icon-color-inactive: #99989d; 105 | --icon-color-reverse: var(--md-default-bg-color--dark); 106 | --shadow-color-primary: #000; 107 | --button-text-color-primary: #fbfbfb; 108 | --button-text-color-secondary: #99989d; 109 | --button-background-color-primary: var(--md-accent-fg-color); 110 | --button-background-color-secondary: hsla(var(--md-hue), 15%, 9%, 0.33); 111 | --button-background-color-secondary-hover: var(--md-accent-fg-color--transparent); 112 | --button-border-color-secondary: #2e2e2e; 113 | --backdrop-background-color-primary: rgba(5, 5, 5, .7); 114 | --chat-button-border-color-gradientOne: transparent; 115 | --chat-button-border-color-gradientTwo: transparent; 116 | --chat-button-border-color-gradientThree: var(--md-accent-fg-color); 117 | --chat-button-border-color-gradientFour: var(--md-accent-fg-color); 118 | --chat-button-border-color-gradientFive: transparent; 119 | --chat-button-border-color-gradientSix: transparent; 120 | --chat-button-background-color-gradientOne: var(--md-accent-fg-color); 121 | --chat-button-background-color-gradientTwo: transparent; 122 | } -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/brand/command/docker-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/command/docker-dark.png -------------------------------------------------------------------------------- /docs/assets/images/brand/command/docker-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/command/docker-light.png -------------------------------------------------------------------------------- /docs/assets/images/brand/command/linux-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/command/linux-dark.png -------------------------------------------------------------------------------- /docs/assets/images/brand/command/linux-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/command/linux-light.png -------------------------------------------------------------------------------- /docs/assets/images/brand/dark/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/dark/1.png -------------------------------------------------------------------------------- /docs/assets/images/brand/dark/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/dark/2.png -------------------------------------------------------------------------------- /docs/assets/images/brand/dark/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/dark/3.png -------------------------------------------------------------------------------- /docs/assets/images/brand/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/img/1.jpg -------------------------------------------------------------------------------- /docs/assets/images/brand/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/img/2.jpg -------------------------------------------------------------------------------- /docs/assets/images/brand/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/img/3.jpg -------------------------------------------------------------------------------- /docs/assets/images/brand/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/img/4.jpg -------------------------------------------------------------------------------- /docs/assets/images/brand/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/img/5.jpg -------------------------------------------------------------------------------- /docs/assets/images/brand/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/img/6.jpg -------------------------------------------------------------------------------- /docs/assets/images/brand/light/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/light/1.png -------------------------------------------------------------------------------- /docs/assets/images/brand/light/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/light/2.png -------------------------------------------------------------------------------- /docs/assets/images/brand/light/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/brand/light/3.png -------------------------------------------------------------------------------- /docs/assets/images/brand/svg/1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/brand/svg/2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/brand/svg/3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/brand/svg/logo-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/brand/svg/logo-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/almalinux.svg: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /docs/assets/images/icon/alpine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/alpine.png -------------------------------------------------------------------------------- /docs/assets/images/icon/anolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/anolis.png -------------------------------------------------------------------------------- /docs/assets/images/icon/arch-linux.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/arch-linux.ico -------------------------------------------------------------------------------- /docs/assets/images/icon/armbian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/armbian.png -------------------------------------------------------------------------------- /docs/assets/images/icon/centos.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/debian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/deepin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/deepin.png -------------------------------------------------------------------------------- /docs/assets/images/icon/fedora.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/fedora.ico -------------------------------------------------------------------------------- /docs/assets/images/icon/gentoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/kali-linux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/linux-mint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/linux-mint.ico -------------------------------------------------------------------------------- /docs/assets/images/icon/linux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/netlify.svg: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /docs/assets/images/icon/nixos.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/opencloudos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/opencloudos.png -------------------------------------------------------------------------------- /docs/assets/images/icon/openeuler.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/openeuler.ico -------------------------------------------------------------------------------- /docs/assets/images/icon/openkylin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/openkylin.ico -------------------------------------------------------------------------------- /docs/assets/images/icon/opensuse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/raspberry-pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/raspberry-pi.png -------------------------------------------------------------------------------- /docs/assets/images/icon/red-hat-enterprise-linux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/redhat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/rocky-linux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/ubuntu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/icon/zorin-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/icon/zorin-os.png -------------------------------------------------------------------------------- /docs/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/logo.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/1panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/1panel.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/arcadia-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/arcadia-dark.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/arcadia-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/arcadia-light.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/bueryun.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/sponsor/businiaocdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/businiaocdn.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/duotuyun-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/sponsor/duotuyun-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/sponsor/fufuyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/fufuyun.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/ifdian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/ifdian.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/linfengyun-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/linfengyun-dark.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/linfengyun-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/linfengyun-light.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/qiaoxh-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/sponsor/runxinyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/runxinyun.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/xinniaoyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/xinniaoyun.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/yuluyundun-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/yuluyundun-dark.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/yuluyundun-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/yuluyundun-light.png -------------------------------------------------------------------------------- /docs/assets/images/sponsor/yunyoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/sponsor/yunyoo.png -------------------------------------------------------------------------------- /docs/assets/images/support/jetbrains-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/support/jetbrains-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/images/support/netlify-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/support/netlify-dark.png -------------------------------------------------------------------------------- /docs/assets/images/support/netlify-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManito/LinuxMirrors/4d0d5256a26919016e8d82df73c019f38d2a701f/docs/assets/images/support/netlify-light.png -------------------------------------------------------------------------------- /docs/assets/js/common.js: -------------------------------------------------------------------------------- 1 | // 防抖 2 | function debounce(func, wait) { 3 | let timeout 4 | return function () { 5 | const context = this 6 | const args = arguments 7 | clearTimeout(timeout) 8 | timeout = setTimeout(() => func.apply(context, args), wait) 9 | } 10 | } 11 | 12 | // 组件管理系统(每个组件都是一个 Vue 实例) 13 | const ComponentSystem = { 14 | // 组件状态数据 15 | components: {}, 16 | 17 | // 注册组件 18 | register: function (componentId, componentDef) { 19 | // 为每个组件创建自己的状态 20 | this.components[componentId] = { 21 | id: componentId, 22 | instance: null, 23 | isInitializing: false, 24 | lastInitTime: 0, 25 | def: componentDef, 26 | debouncedInit: null, 27 | } 28 | // 创建组件初始化函数 29 | const initFunc = function () { 30 | const component = ComponentSystem.components[componentId] 31 | // 如果正在初始化或者距离上次初始化时间太短,则跳过 32 | const now = Date.now() 33 | if (component.isInitializing || now - component.lastInitTime < 1000) { 34 | return 35 | } 36 | // 使用缓存,如果没有则查询 37 | if (!component.instance) { 38 | component.instance = document.getElementById(componentId) 39 | } 40 | // 如果找不到容器,不执行后续操作 41 | if (!component.instance) { 42 | return 43 | } 44 | // 如果组件已经初始化过,且DOM没有变化,则跳过 45 | if (component.instance.hasAttribute('data-initialized')) { 46 | return 47 | } 48 | // console.log(`找到组件 ${componentId} 容器,开始初始化`) 49 | component.isInitializing = true 50 | component.lastInitTime = now 51 | try { 52 | // 清空容器内容,防止重复初始化 53 | while (component.instance.firstChild) { 54 | component.instance.removeChild(component.instance.firstChild) 55 | } 56 | // 确保容器有适当的尺寸 57 | if (!component.instance.style.width) { 58 | component.instance.style.width = '100%' 59 | } 60 | // 确保 Vue 和 TDesign 已加载 61 | if (typeof Vue !== 'undefined' && typeof TDesign !== 'undefined') { 62 | // 创建 Vue 应用 63 | const App = Vue.createApp(component.def) 64 | // 注册 TDesign 组件 65 | App.use(TDesign.default) 66 | // 挂载应用 67 | App.mount(component.instance) 68 | // console.log(`组件 ${componentId} 初始化成功`) 69 | // 标记组件已初始化 70 | component.instance.setAttribute('data-initialized', 'true') 71 | // 立即更新主题 72 | updateTDesignGlobalTheme() 73 | } else if (typeof Vue !== 'undefined') { 74 | console.error('Vue 未找到') 75 | const errorDiv = document.createElement('div') 76 | errorDiv.innerHTML = `
组件 ${componentId} 加载失败,请检查 Vue 是否存在!
组件 ${componentId} 加载失败,请检查 TDesign UI 是否存在!
请前往作者爱发电主页查看说明并与作者取得联系
本项目已加入 JetBrains & Netlify 开源项目计划71 |
{{ page.meta.comments_description }}5 | {% endif %} 6 | 23 | 24 | 54 | {% endif %} 55 | -------------------------------------------------------------------------------- /docs/theme/partials/content.html: -------------------------------------------------------------------------------- 1 | {% include "partials/tags.html" %} 2 | 3 | {% include "partials/actions.html" %} 4 | 5 | {% if "\x3ch1" not in page.content %} 6 |