├── .assets ├── layout_switcher.png ├── mixed_names.png └── normal.png ├── .gitignore ├── LICENSE ├── README.md ├── ext ├── SDL2.dll └── cimgui.dll └── src ├── CSDeskBand.cs ├── Controls ├── BandControl.cs ├── ConfigWindow.cs └── StatusLabel.cs ├── Deskband.cs ├── Models ├── Config.cs ├── Constants.cs └── Notification.cs └── komoband.csproj /.assets/layout_switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/.assets/layout_switcher.png -------------------------------------------------------------------------------- /.assets/mixed_names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/.assets/mixed_names.png -------------------------------------------------------------------------------- /.assets/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/.assets/normal.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/README.md -------------------------------------------------------------------------------- /ext/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/ext/SDL2.dll -------------------------------------------------------------------------------- /ext/cimgui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/ext/cimgui.dll -------------------------------------------------------------------------------- /src/CSDeskBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/CSDeskBand.cs -------------------------------------------------------------------------------- /src/Controls/BandControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Controls/BandControl.cs -------------------------------------------------------------------------------- /src/Controls/ConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Controls/ConfigWindow.cs -------------------------------------------------------------------------------- /src/Controls/StatusLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Controls/StatusLabel.cs -------------------------------------------------------------------------------- /src/Deskband.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Deskband.cs -------------------------------------------------------------------------------- /src/Models/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Models/Config.cs -------------------------------------------------------------------------------- /src/Models/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Models/Constants.cs -------------------------------------------------------------------------------- /src/Models/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/Models/Notification.cs -------------------------------------------------------------------------------- /src/komoband.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cynosphere/komoband/HEAD/src/komoband.csproj --------------------------------------------------------------------------------