├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── codeowners ├── .gitignore ├── .husky └── pre-commit ├── .mailmap ├── .npmrc ├── .prettierignore ├── .remarkignore ├── .remarkrc.mjs ├── assets ├── nord-hyper-banner.ai ├── nord-hyper-banner.svg ├── scrcast-feature-cursor-blink.gif ├── scrcast-feature-smooth-tab-transition.gif ├── scrot-feature-tabs.png └── scrot-top.png ├── changelog.md ├── index.js ├── license ├── lint-staged.config.js ├── package.json ├── prettier.config.js └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/codeowners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.github/codeowners -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.mailmap -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.prettierignore -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.remarkignore -------------------------------------------------------------------------------- /.remarkrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/.remarkrc.mjs -------------------------------------------------------------------------------- /assets/nord-hyper-banner.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/assets/nord-hyper-banner.ai -------------------------------------------------------------------------------- /assets/nord-hyper-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/assets/nord-hyper-banner.svg -------------------------------------------------------------------------------- /assets/scrcast-feature-cursor-blink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/assets/scrcast-feature-cursor-blink.gif -------------------------------------------------------------------------------- /assets/scrcast-feature-smooth-tab-transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/assets/scrcast-feature-smooth-tab-transition.gif -------------------------------------------------------------------------------- /assets/scrot-feature-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/assets/scrot-feature-tabs.png -------------------------------------------------------------------------------- /assets/scrot-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/assets/scrot-top.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/changelog.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/license -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/prettier.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordtheme/hyper/HEAD/readme.md --------------------------------------------------------------------------------