├── .editorconfig ├── .gitattributes ├── license ├── notification_center.py ├── readme.md ├── screenshot.png └── weechat.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/weechat-notification-center/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/weechat-notification-center/HEAD/license -------------------------------------------------------------------------------- /notification_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/weechat-notification-center/HEAD/notification_center.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/weechat-notification-center/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/weechat-notification-center/HEAD/screenshot.png -------------------------------------------------------------------------------- /weechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/weechat-notification-center/HEAD/weechat.png --------------------------------------------------------------------------------