├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── clients ├── macos-titlebar.theme.css └── metas │ └── betterdiscord.json ├── package.json ├── src ├── source.css └── source.scss └── theme-config.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | pnpm-lock.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/README.md -------------------------------------------------------------------------------- /clients/macos-titlebar.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/clients/macos-titlebar.theme.css -------------------------------------------------------------------------------- /clients/metas/betterdiscord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/clients/metas/betterdiscord.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/package.json -------------------------------------------------------------------------------- /src/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/src/source.css -------------------------------------------------------------------------------- /src/source.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/src/source.scss -------------------------------------------------------------------------------- /theme-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/macos-titlebar/HEAD/theme-config.json --------------------------------------------------------------------------------