├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── codeowners ├── .gitignore ├── .husky └── pre-commit ├── .mailmap ├── .npmrc ├── .prettierignore ├── .remarkignore ├── .remarkrc.mjs ├── changelog.md ├── install.sh ├── license ├── lint-staged.config.js ├── package.json ├── prettier.config.js ├── readme.md └── src ├── assets ├── nord-xfce-terminal-banner.ai ├── nord-xfce-terminal-banner.svg ├── scrot-colortest.png ├── scrot-htop.png └── scrot-readme-color-preset.png └── nord.theme /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/codeowners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.github/codeowners -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.mailmap -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.prettierignore -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.remarkignore -------------------------------------------------------------------------------- /.remarkrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/.remarkrc.mjs -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/changelog.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/install.sh -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/license -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/prettier.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/readme.md -------------------------------------------------------------------------------- /src/assets/nord-xfce-terminal-banner.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/src/assets/nord-xfce-terminal-banner.ai -------------------------------------------------------------------------------- /src/assets/nord-xfce-terminal-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/src/assets/nord-xfce-terminal-banner.svg -------------------------------------------------------------------------------- /src/assets/scrot-colortest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/src/assets/scrot-colortest.png -------------------------------------------------------------------------------- /src/assets/scrot-htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/src/assets/scrot-htop.png -------------------------------------------------------------------------------- /src/assets/scrot-readme-color-preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/src/assets/scrot-readme-color-preset.png -------------------------------------------------------------------------------- /src/nord.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/xfce-terminal/HEAD/src/nord.theme --------------------------------------------------------------------------------