feat: remove insides plugins

This commit is contained in:
0xMRTT 2022-08-13 18:31:14 +02:00
parent 8a61bfbb9f
commit 099ebe61ed
No known key found for this signature in database
GPG key ID: AC9E06BF3DECB6FB
3 changed files with 1 additions and 47 deletions

View file

@ -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)
install_data(adwcustomizer_sources, install_dir: MODULE_DIR)

View file

@ -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 <https://www.gnu.org/licenses/>.

View file

@ -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 <https://www.gnu.org/licenses/>.
from ..plugin import AdwcustomizerPlugin
class AdwcustomizerGtk4Plugin(AdwcustomizerPlugin):
pass