commit d1bdbcd9130380eb74a876f1f104985ace657fac Author: Zoe Roux Date: Mon May 8 12:42:52 2023 +0900 Initial commit diff --git a/extension.js b/extension.js new file mode 100644 index 0000000..64857af --- /dev/null +++ b/extension.js @@ -0,0 +1,34 @@ +/* extension.js + * + * 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 2 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 . + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +/* exported init */ + +class Extension { + constructor() { + } + + enable() { + } + + disable() { + } +} + +function init() { + return new Extension(); +} diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..e2cb31c --- /dev/null +++ b/metadata.json @@ -0,0 +1,8 @@ +{ + "name": "Fairy", + "description": "Bringing dynamic tiling to gnome", + "uuid": "fairy@zoriya.dev", + "shell-version": [ + "44" + ] +} diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..37b93f2 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1 @@ +/* Add your custom extension styling here */