├── .github └── workflows │ └── publish-release.yaml ├── .gitignore ├── .node-version ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── changelog ├── bun.lockb ├── command-execution-timer.plugin.zsh ├── command-execution-timer.zsh ├── docs ├── .gitignore ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── accessibility.ts │ │ ├── analytics.ts │ │ ├── default-theme-overrides.css │ │ ├── index.ts │ │ └── style.css ├── acknowledgments.md ├── contributing.md ├── index.md ├── installation.md ├── options.md ├── public │ ├── apple-touch-icon.png │ ├── command-execution-timer-card.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── favicon.svg │ ├── images │ │ └── command-execution-timer-logo.png │ ├── js │ │ └── analytics.js │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── usage.md └── vitepressignore │ ├── command-execution-timer-card.psd │ ├── command-execution-timer-favicon.png │ └── command-execution-timer-favicon.psd ├── package.json ├── tests ├── README.md └── index.ztr.zsh └── tsconfig.json /.github/workflows/publish-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/.github/workflows/publish-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zwc 2 | node_modules 3 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22.13.1 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/README.md -------------------------------------------------------------------------------- /bin/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/bin/changelog -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/bun.lockb -------------------------------------------------------------------------------- /command-execution-timer.plugin.zsh: -------------------------------------------------------------------------------- 1 | source ${0:A:h}/command-execution-timer.zsh 2 | -------------------------------------------------------------------------------- /command-execution-timer.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/command-execution-timer.zsh -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/accessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/.vitepress/theme/accessibility.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/.vitepress/theme/analytics.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/default-theme-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/.vitepress/theme/default-theme-overrides.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- 1 | @import "default-theme-overrides.css"; -------------------------------------------------------------------------------- /docs/acknowledgments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/acknowledgments.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/command-execution-timer-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/command-execution-timer-card.png -------------------------------------------------------------------------------- /docs/public/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/favicon-48x48.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/public/images/command-execution-timer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/images/command-execution-timer-logo.png -------------------------------------------------------------------------------- /docs/public/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/js/analytics.js -------------------------------------------------------------------------------- /docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/site.webmanifest -------------------------------------------------------------------------------- /docs/public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /docs/public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/vitepressignore/command-execution-timer-card.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/vitepressignore/command-execution-timer-card.psd -------------------------------------------------------------------------------- /docs/vitepressignore/command-execution-timer-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/vitepressignore/command-execution-timer-favicon.png -------------------------------------------------------------------------------- /docs/vitepressignore/command-execution-timer-favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/docs/vitepressignore/command-execution-timer-favicon.psd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/package.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/index.ztr.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/tests/index.ztr.zsh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olets/command-execution-timer/HEAD/tsconfig.json --------------------------------------------------------------------------------