├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bun.lock ├── github.5m.js ├── package.json └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/bun.lock -------------------------------------------------------------------------------- /github.5m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/github.5m.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koki-develop/xbar-plugin-github/HEAD/screenshot.png --------------------------------------------------------------------------------