├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── packaging-arch.md │ ├── packaging-ubuntu.md │ ├── patch-bug.yaml │ └── suggest-patch.yaml ├── readme │ └── preview.png └── workflows │ └── main.yml ├── .gitignore ├── COPYING ├── PKGBUILD ├── README.Patches.md ├── README.Variables.md ├── README.md ├── appearance__buttons-menus-icons.patch ├── appearance__disable-backdrop.patch ├── appearance__file-chooser.patch ├── appearance__fix_black_border.patch ├── appearance__message-dialogs.patch ├── appearance__print-dialog.patch ├── appearance__smaller-statusbar.patch ├── csd__clean-headerbar.patch ├── csd__disabled-by-default.patch ├── csd__server-side-shadow.patch ├── file-chooser__eject-button.patch ├── file-chooser__file_units.patch ├── file-chooser__places-sidebar.patch ├── file-chooser__show-recent.patch ├── file-chooser__typeahead.patch ├── fixes__labels-wrapping.patch ├── fixes__primary_selection.patch ├── fixes__too-large-menu-covers-bar.disabled-patch ├── fixes__wayland_dialogs_header_setting.patch ├── gtk+-atk-bridge-gtkaccessibility.patch ├── gtk+-atk-bridge-meson.build.patch ├── gtk+-atk-bridge-meson_options.txt.patch ├── gtk3.install ├── notebook_wheel_scroll.patch ├── other__default-settings.patch ├── other__hide-insert-emoji.patch ├── other__mnemonics-delay.patch ├── other__remove_dead_keys_underline.patch ├── popovers__color-chooser.patch ├── popovers__file-chooser-list.patch ├── popovers__places-sidebar.patch ├── scripts ├── ci-check-checksums.py ├── create-ubuntu-package.sh ├── refresh-patches.sh └── test-exclude-each-patch.sh ├── series ├── settings.ini ├── smaller-adwaita.css ├── treeview__alternating_row_colours.patch └── window__rgba-visual.patch /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/packaging-arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/ISSUE_TEMPLATE/packaging-arch.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/packaging-ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/ISSUE_TEMPLATE/packaging-ubuntu.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/patch-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/ISSUE_TEMPLATE/patch-bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/ISSUE_TEMPLATE/suggest-patch.yaml -------------------------------------------------------------------------------- /.github/readme/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/readme/preview.png -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/COPYING -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.Patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/README.Patches.md -------------------------------------------------------------------------------- /README.Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/README.Variables.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/README.md -------------------------------------------------------------------------------- /appearance__buttons-menus-icons.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__buttons-menus-icons.patch -------------------------------------------------------------------------------- /appearance__disable-backdrop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__disable-backdrop.patch -------------------------------------------------------------------------------- /appearance__file-chooser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__file-chooser.patch -------------------------------------------------------------------------------- /appearance__fix_black_border.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__fix_black_border.patch -------------------------------------------------------------------------------- /appearance__message-dialogs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__message-dialogs.patch -------------------------------------------------------------------------------- /appearance__print-dialog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__print-dialog.patch -------------------------------------------------------------------------------- /appearance__smaller-statusbar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/appearance__smaller-statusbar.patch -------------------------------------------------------------------------------- /csd__clean-headerbar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/csd__clean-headerbar.patch -------------------------------------------------------------------------------- /csd__disabled-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/csd__disabled-by-default.patch -------------------------------------------------------------------------------- /csd__server-side-shadow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/csd__server-side-shadow.patch -------------------------------------------------------------------------------- /file-chooser__eject-button.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/file-chooser__eject-button.patch -------------------------------------------------------------------------------- /file-chooser__file_units.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/file-chooser__file_units.patch -------------------------------------------------------------------------------- /file-chooser__places-sidebar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/file-chooser__places-sidebar.patch -------------------------------------------------------------------------------- /file-chooser__show-recent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/file-chooser__show-recent.patch -------------------------------------------------------------------------------- /file-chooser__typeahead.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/file-chooser__typeahead.patch -------------------------------------------------------------------------------- /fixes__labels-wrapping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/fixes__labels-wrapping.patch -------------------------------------------------------------------------------- /fixes__primary_selection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/fixes__primary_selection.patch -------------------------------------------------------------------------------- /fixes__too-large-menu-covers-bar.disabled-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/fixes__too-large-menu-covers-bar.disabled-patch -------------------------------------------------------------------------------- /fixes__wayland_dialogs_header_setting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/fixes__wayland_dialogs_header_setting.patch -------------------------------------------------------------------------------- /gtk+-atk-bridge-gtkaccessibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/gtk+-atk-bridge-gtkaccessibility.patch -------------------------------------------------------------------------------- /gtk+-atk-bridge-meson.build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/gtk+-atk-bridge-meson.build.patch -------------------------------------------------------------------------------- /gtk+-atk-bridge-meson_options.txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/gtk+-atk-bridge-meson_options.txt.patch -------------------------------------------------------------------------------- /gtk3.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/gtk3.install -------------------------------------------------------------------------------- /notebook_wheel_scroll.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/notebook_wheel_scroll.patch -------------------------------------------------------------------------------- /other__default-settings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/other__default-settings.patch -------------------------------------------------------------------------------- /other__hide-insert-emoji.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/other__hide-insert-emoji.patch -------------------------------------------------------------------------------- /other__mnemonics-delay.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/other__mnemonics-delay.patch -------------------------------------------------------------------------------- /other__remove_dead_keys_underline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/other__remove_dead_keys_underline.patch -------------------------------------------------------------------------------- /popovers__color-chooser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/popovers__color-chooser.patch -------------------------------------------------------------------------------- /popovers__file-chooser-list.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/popovers__file-chooser-list.patch -------------------------------------------------------------------------------- /popovers__places-sidebar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/popovers__places-sidebar.patch -------------------------------------------------------------------------------- /scripts/ci-check-checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/scripts/ci-check-checksums.py -------------------------------------------------------------------------------- /scripts/create-ubuntu-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/scripts/create-ubuntu-package.sh -------------------------------------------------------------------------------- /scripts/refresh-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/scripts/refresh-patches.sh -------------------------------------------------------------------------------- /scripts/test-exclude-each-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/scripts/test-exclude-each-patch.sh -------------------------------------------------------------------------------- /series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/series -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/settings.ini -------------------------------------------------------------------------------- /smaller-adwaita.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/smaller-adwaita.css -------------------------------------------------------------------------------- /treeview__alternating_row_colours.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/treeview__alternating_row_colours.patch -------------------------------------------------------------------------------- /window__rgba-visual.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lah7/gtk3-classic/HEAD/window__rgba-visual.patch --------------------------------------------------------------------------------