From 099ebe61ed3c74f34bf7d920365ab393f8ccb6ee Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@tuta.io> Date: Sat, 13 Aug 2022 18:31:14 +0200 Subject: [PATCH] feat: remove insides plugins --- src/meson.build | 8 +------- src/plugins/__init__.py | 17 ----------------- src/plugins/gtk4.py | 23 ----------------------- 3 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 src/plugins/__init__.py delete mode 100644 src/plugins/gtk4.py diff --git a/src/meson.build b/src/meson.build index aa02e60a..c2c1c213 100644 --- a/src/meson.build +++ b/src/meson.build @@ -58,10 +58,4 @@ adwcustomizer_sources = [ 'app_type_dialog.py', 'custom_css_group.py', ] -install_data(adwcustomizer_sources, install_dir: MODULE_DIR) - -plugins_sources = [ - 'plugins/__init__.py', - 'plugins/gtk4.py' -] -install_data(plugins_sources, install_dir: PLUGINS_DIR) \ No newline at end of file +install_data(adwcustomizer_sources, install_dir: MODULE_DIR) \ No newline at end of file diff --git a/src/plugins/__init__.py b/src/plugins/__init__.py deleted file mode 100644 index f93ffe53..00000000 --- a/src/plugins/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# plugins/__init__.py -# -# Change the look of Adwaita, with ease -# Copyright (C) 2022 Adwaita Manager Team -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . diff --git a/src/plugins/gtk4.py b/src/plugins/gtk4.py deleted file mode 100644 index dd5fe68e..00000000 --- a/src/plugins/gtk4.py +++ /dev/null @@ -1,23 +0,0 @@ -# plugins/gtk4.py -# -# Change the look of Adwaita, with ease -# Copyright (C) 2022 Adwaita Manager Team -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -from ..plugin import AdwcustomizerPlugin - - -class AdwcustomizerGtk4Plugin(AdwcustomizerPlugin): - pass