├── .gitignore ├── BreezewayConfig.cmake.in ├── CMakeLists.txt ├── COPYING ├── README.md ├── breezewaymod.png ├── breezewaymod_icon.png ├── buttonicons.png ├── colormatching.png ├── gradients.png ├── hidpi.png ├── icon.svg ├── kdecoration ├── CMakeLists.txt ├── Messages.sh ├── breezeway.h ├── breezeway.json ├── breezewaybutton.cpp ├── breezewaybutton.h ├── breezewaydecoration.cpp ├── breezewaydecoration.h ├── breezewayexceptionlist.cpp ├── breezewayexceptionlist.h ├── breezewaysettings.kcfgc ├── breezewaysettingsdata.kcfg ├── breezewaysettingsprovider.cpp ├── breezewaysettingsprovider.h ├── breezewaysizegrip.cpp ├── breezewaysizegrip.h ├── config-breezeway.h.cmake └── config │ ├── breezewayconfigwidget.cpp │ ├── breezewayconfigwidget.h │ ├── breezewaydecorationconfig.desktop │ ├── breezewaydetectwidget.cpp │ ├── breezewaydetectwidget.h │ ├── breezewayexceptiondialog.cpp │ ├── breezewayexceptiondialog.h │ ├── breezewayexceptionlistwidget.cpp │ ├── breezewayexceptionlistwidget.h │ ├── breezewayexceptionmodel.cpp │ ├── breezewayexceptionmodel.h │ ├── breezewayitemmodel.cpp │ ├── breezewayitemmodel.h │ ├── breezewaylistmodel.h │ └── ui │ ├── about.qrc │ ├── breezewayconfigurationui.ui │ ├── breezewaydetectwidget.ui │ ├── breezewayexceptiondialog.ui │ ├── breezewayexceptionlistwidget.ui │ └── breezewaymod_icon.png ├── libbreezewaycommon ├── CMakeLists.txt ├── breezewayboxshadowrenderer.cpp ├── breezewayboxshadowrenderer.h └── config-breezewaycommon.h.cmake ├── low_contrast.png ├── perfectcolor.png ├── regularcolors.png ├── screenshot.png ├── settings.gif ├── sierrabreeze.png └── window_settings.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/.gitignore -------------------------------------------------------------------------------- /BreezewayConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | set(BREEZEWAY_KDECORATION_PLUGIN_ID "org.kde.breezeway") 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/README.md -------------------------------------------------------------------------------- /breezewaymod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/breezewaymod.png -------------------------------------------------------------------------------- /breezewaymod_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/breezewaymod_icon.png -------------------------------------------------------------------------------- /buttonicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/buttonicons.png -------------------------------------------------------------------------------- /colormatching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/colormatching.png -------------------------------------------------------------------------------- /gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/gradients.png -------------------------------------------------------------------------------- /hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/hidpi.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/icon.svg -------------------------------------------------------------------------------- /kdecoration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/CMakeLists.txt -------------------------------------------------------------------------------- /kdecoration/Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/Messages.sh -------------------------------------------------------------------------------- /kdecoration/breezeway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezeway.h -------------------------------------------------------------------------------- /kdecoration/breezeway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezeway.json -------------------------------------------------------------------------------- /kdecoration/breezewaybutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaybutton.cpp -------------------------------------------------------------------------------- /kdecoration/breezewaybutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaybutton.h -------------------------------------------------------------------------------- /kdecoration/breezewaydecoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaydecoration.cpp -------------------------------------------------------------------------------- /kdecoration/breezewaydecoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaydecoration.h -------------------------------------------------------------------------------- /kdecoration/breezewayexceptionlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewayexceptionlist.cpp -------------------------------------------------------------------------------- /kdecoration/breezewayexceptionlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewayexceptionlist.h -------------------------------------------------------------------------------- /kdecoration/breezewaysettings.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaysettings.kcfgc -------------------------------------------------------------------------------- /kdecoration/breezewaysettingsdata.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaysettingsdata.kcfg -------------------------------------------------------------------------------- /kdecoration/breezewaysettingsprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaysettingsprovider.cpp -------------------------------------------------------------------------------- /kdecoration/breezewaysettingsprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaysettingsprovider.h -------------------------------------------------------------------------------- /kdecoration/breezewaysizegrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaysizegrip.cpp -------------------------------------------------------------------------------- /kdecoration/breezewaysizegrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/breezewaysizegrip.h -------------------------------------------------------------------------------- /kdecoration/config-breezeway.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config-breezeway.h.cmake -------------------------------------------------------------------------------- /kdecoration/config/breezewayconfigwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayconfigwidget.cpp -------------------------------------------------------------------------------- /kdecoration/config/breezewayconfigwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayconfigwidget.h -------------------------------------------------------------------------------- /kdecoration/config/breezewaydecorationconfig.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewaydecorationconfig.desktop -------------------------------------------------------------------------------- /kdecoration/config/breezewaydetectwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewaydetectwidget.cpp -------------------------------------------------------------------------------- /kdecoration/config/breezewaydetectwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewaydetectwidget.h -------------------------------------------------------------------------------- /kdecoration/config/breezewayexceptiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayexceptiondialog.cpp -------------------------------------------------------------------------------- /kdecoration/config/breezewayexceptiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayexceptiondialog.h -------------------------------------------------------------------------------- /kdecoration/config/breezewayexceptionlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayexceptionlistwidget.cpp -------------------------------------------------------------------------------- /kdecoration/config/breezewayexceptionlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayexceptionlistwidget.h -------------------------------------------------------------------------------- /kdecoration/config/breezewayexceptionmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayexceptionmodel.cpp -------------------------------------------------------------------------------- /kdecoration/config/breezewayexceptionmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayexceptionmodel.h -------------------------------------------------------------------------------- /kdecoration/config/breezewayitemmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayitemmodel.cpp -------------------------------------------------------------------------------- /kdecoration/config/breezewayitemmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewayitemmodel.h -------------------------------------------------------------------------------- /kdecoration/config/breezewaylistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/breezewaylistmodel.h -------------------------------------------------------------------------------- /kdecoration/config/ui/about.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/ui/about.qrc -------------------------------------------------------------------------------- /kdecoration/config/ui/breezewayconfigurationui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/ui/breezewayconfigurationui.ui -------------------------------------------------------------------------------- /kdecoration/config/ui/breezewaydetectwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/ui/breezewaydetectwidget.ui -------------------------------------------------------------------------------- /kdecoration/config/ui/breezewayexceptiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/ui/breezewayexceptiondialog.ui -------------------------------------------------------------------------------- /kdecoration/config/ui/breezewayexceptionlistwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/ui/breezewayexceptionlistwidget.ui -------------------------------------------------------------------------------- /kdecoration/config/ui/breezewaymod_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/kdecoration/config/ui/breezewaymod_icon.png -------------------------------------------------------------------------------- /libbreezewaycommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/libbreezewaycommon/CMakeLists.txt -------------------------------------------------------------------------------- /libbreezewaycommon/breezewayboxshadowrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/libbreezewaycommon/breezewayboxshadowrenderer.cpp -------------------------------------------------------------------------------- /libbreezewaycommon/breezewayboxshadowrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/libbreezewaycommon/breezewayboxshadowrenderer.h -------------------------------------------------------------------------------- /libbreezewaycommon/config-breezewaycommon.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/libbreezewaycommon/config-breezewaycommon.h.cmake -------------------------------------------------------------------------------- /low_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/low_contrast.png -------------------------------------------------------------------------------- /perfectcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/perfectcolor.png -------------------------------------------------------------------------------- /regularcolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/regularcolors.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/screenshot.png -------------------------------------------------------------------------------- /settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/settings.gif -------------------------------------------------------------------------------- /sierrabreeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/sierrabreeze.png -------------------------------------------------------------------------------- /window_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n4n0GH/breezeway-mod/HEAD/window_settings.png --------------------------------------------------------------------------------