Add bare bones necessary files for extension packing

This commit is contained in:
Tor Hedin Brønner
2017-09-20 14:52:44 +02:00
parent 769891f9b2
commit ab1c99da01
2 changed files with 20 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const Extension = imports.misc.extensionUtils.getCurrentExtension();
const Tiling = Extension.imports.tiling;
function init() {
}
function enable() {
}
function disable() {
}
+8
View File
@@ -0,0 +1,8 @@
{
"uuid": "paperwm@hedning:matrix.org",
"name": "PaperWM",
"description": "Tiling window manager with a twist",
"url": "https://github.com/paperwm/PaperWM",
"settings-schema": "org.gnome.shell.extensions.org-scrollwm",
"shell-version": [ "3.22" ]
}