├── .git-blame-ignore-revs ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── .reuse └── dep5 ├── CMakeLists.txt ├── LICENSES ├── BSD-2-Clause.txt ├── BSD-3-Clause.txt ├── CC0-1.0.txt ├── GPL-2.0-only.txt ├── GPL-2.0-or-later.txt ├── GPL-3.0-only.txt └── LicenseRef-KDE-Accepted-GPL.txt ├── README.md ├── cmake └── modules │ ├── FindGSettingSchemas.cmake │ ├── FindSass.cmake │ └── FindXSettingsd.cmake ├── color-reload-module ├── CMakeLists.txt └── reloader.c ├── config.h.cmake ├── gtk3proxies ├── CMakeLists.txt ├── preview.ui └── preview3.c ├── kconf_update ├── CMakeLists.txt ├── gtkconfig.upd ├── gtktheme.cpp ├── remove_deprecated_gtk4_option_v2.cpp └── remove_window_decorations_from_gtk_css.sh ├── kded ├── CMakeLists.txt ├── config_editor │ ├── CMakeLists.txt │ ├── custom_css.cpp │ ├── custom_css.h │ ├── gsettings.cpp │ ├── gsettings.h │ ├── gtk2.cpp │ ├── gtk2.h │ ├── settings_ini.cpp │ ├── settings_ini.h │ ├── utils.cpp │ ├── utils.h │ ├── xsettings.cpp │ └── xsettings.h ├── configvalueprovider.cpp ├── configvalueprovider.h ├── gsd-xsettings-manager │ ├── gsd-xsettings-manager.cpp │ ├── gsd-xsettings-manager.h │ └── org.gtk.Settings.xml ├── gtkconfig.cpp ├── gtkconfig.h ├── gtkconfig.json ├── kwin_bridge │ ├── CMakeLists.txt │ ├── auroraedecorationpainter.cpp │ ├── auroraedecorationpainter.h │ ├── decorationpainter.cpp │ ├── decorationpainter.h │ ├── decorationpalette.cpp │ ├── decorationpalette.h │ ├── dummydecoratedclient.cpp │ ├── dummydecoratedclient.h │ ├── dummydecorationbridge.cpp │ ├── dummydecorationbridge.h │ ├── dummydecorationsettings.cpp │ ├── dummydecorationsettings.h │ ├── standarddecorationpainter.cpp │ └── standarddecorationpainter.h ├── scss │ ├── CMakeLists.txt │ ├── build_decorations_css.sh │ └── window_decorations.scss ├── themepreviewer.cpp └── themepreviewer.h ├── logo.png └── window-decorations-reload-module ├── CMakeLists.txt └── reloader.c /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 4607500ab347ffa6cb460bb5d8702fc666c87483 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/LICENSES/LicenseRef-KDE-Accepted-GPL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/FindGSettingSchemas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/cmake/modules/FindGSettingSchemas.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSass.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/cmake/modules/FindSass.cmake -------------------------------------------------------------------------------- /cmake/modules/FindXSettingsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/cmake/modules/FindXSettingsd.cmake -------------------------------------------------------------------------------- /color-reload-module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/color-reload-module/CMakeLists.txt -------------------------------------------------------------------------------- /color-reload-module/reloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/color-reload-module/reloader.c -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/config.h.cmake -------------------------------------------------------------------------------- /gtk3proxies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/gtk3proxies/CMakeLists.txt -------------------------------------------------------------------------------- /gtk3proxies/preview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/gtk3proxies/preview.ui -------------------------------------------------------------------------------- /gtk3proxies/preview3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/gtk3proxies/preview3.c -------------------------------------------------------------------------------- /kconf_update/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kconf_update/CMakeLists.txt -------------------------------------------------------------------------------- /kconf_update/gtkconfig.upd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kconf_update/gtkconfig.upd -------------------------------------------------------------------------------- /kconf_update/gtktheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kconf_update/gtktheme.cpp -------------------------------------------------------------------------------- /kconf_update/remove_deprecated_gtk4_option_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kconf_update/remove_deprecated_gtk4_option_v2.cpp -------------------------------------------------------------------------------- /kconf_update/remove_window_decorations_from_gtk_css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kconf_update/remove_window_decorations_from_gtk_css.sh -------------------------------------------------------------------------------- /kded/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/CMakeLists.txt -------------------------------------------------------------------------------- /kded/config_editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/CMakeLists.txt -------------------------------------------------------------------------------- /kded/config_editor/custom_css.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/custom_css.cpp -------------------------------------------------------------------------------- /kded/config_editor/custom_css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/custom_css.h -------------------------------------------------------------------------------- /kded/config_editor/gsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/gsettings.cpp -------------------------------------------------------------------------------- /kded/config_editor/gsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/gsettings.h -------------------------------------------------------------------------------- /kded/config_editor/gtk2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/gtk2.cpp -------------------------------------------------------------------------------- /kded/config_editor/gtk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/gtk2.h -------------------------------------------------------------------------------- /kded/config_editor/settings_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/settings_ini.cpp -------------------------------------------------------------------------------- /kded/config_editor/settings_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/settings_ini.h -------------------------------------------------------------------------------- /kded/config_editor/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/utils.cpp -------------------------------------------------------------------------------- /kded/config_editor/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/utils.h -------------------------------------------------------------------------------- /kded/config_editor/xsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/xsettings.cpp -------------------------------------------------------------------------------- /kded/config_editor/xsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/config_editor/xsettings.h -------------------------------------------------------------------------------- /kded/configvalueprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/configvalueprovider.cpp -------------------------------------------------------------------------------- /kded/configvalueprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/configvalueprovider.h -------------------------------------------------------------------------------- /kded/gsd-xsettings-manager/gsd-xsettings-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/gsd-xsettings-manager/gsd-xsettings-manager.cpp -------------------------------------------------------------------------------- /kded/gsd-xsettings-manager/gsd-xsettings-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/gsd-xsettings-manager/gsd-xsettings-manager.h -------------------------------------------------------------------------------- /kded/gsd-xsettings-manager/org.gtk.Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/gsd-xsettings-manager/org.gtk.Settings.xml -------------------------------------------------------------------------------- /kded/gtkconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/gtkconfig.cpp -------------------------------------------------------------------------------- /kded/gtkconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/gtkconfig.h -------------------------------------------------------------------------------- /kded/gtkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/gtkconfig.json -------------------------------------------------------------------------------- /kded/kwin_bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/CMakeLists.txt -------------------------------------------------------------------------------- /kded/kwin_bridge/auroraedecorationpainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/auroraedecorationpainter.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/auroraedecorationpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/auroraedecorationpainter.h -------------------------------------------------------------------------------- /kded/kwin_bridge/decorationpainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/decorationpainter.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/decorationpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/decorationpainter.h -------------------------------------------------------------------------------- /kded/kwin_bridge/decorationpalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/decorationpalette.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/decorationpalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/decorationpalette.h -------------------------------------------------------------------------------- /kded/kwin_bridge/dummydecoratedclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/dummydecoratedclient.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/dummydecoratedclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/dummydecoratedclient.h -------------------------------------------------------------------------------- /kded/kwin_bridge/dummydecorationbridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/dummydecorationbridge.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/dummydecorationbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/dummydecorationbridge.h -------------------------------------------------------------------------------- /kded/kwin_bridge/dummydecorationsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/dummydecorationsettings.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/dummydecorationsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/dummydecorationsettings.h -------------------------------------------------------------------------------- /kded/kwin_bridge/standarddecorationpainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/standarddecorationpainter.cpp -------------------------------------------------------------------------------- /kded/kwin_bridge/standarddecorationpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/kwin_bridge/standarddecorationpainter.h -------------------------------------------------------------------------------- /kded/scss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/scss/CMakeLists.txt -------------------------------------------------------------------------------- /kded/scss/build_decorations_css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/scss/build_decorations_css.sh -------------------------------------------------------------------------------- /kded/scss/window_decorations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/scss/window_decorations.scss -------------------------------------------------------------------------------- /kded/themepreviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/themepreviewer.cpp -------------------------------------------------------------------------------- /kded/themepreviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/kded/themepreviewer.h -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/logo.png -------------------------------------------------------------------------------- /window-decorations-reload-module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/window-decorations-reload-module/CMakeLists.txt -------------------------------------------------------------------------------- /window-decorations-reload-module/reloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kde-gtk-config/HEAD/window-decorations-reload-module/reloader.c --------------------------------------------------------------------------------