New: Add initial bare-bones extension source code

I'm using version 1 for the first development phase (like what major
version zero (0.y.z) is in Semantic Versioning 2.0.0), so that the first
production version then gets version 2.
This commit is contained in:
Julian 2021-05-12 12:31:03 +02:00
parent 1c7cafaff9
commit 821d849668
Signed by: julian
GPG Key ID: 094C2AC34192FA11
2 changed files with 23 additions and 0 deletions

16
src/extension.js Normal file
View File

@ -0,0 +1,16 @@
"use strict";
class Extension {
constructor() {
}
enable() {
}
disable() {
}
}
function init() {
return new Extension();
}

7
src/metadata.json Normal file
View File

@ -0,0 +1,7 @@
{
"uuid": "top-bar-organizer@julian.gse.jsts.xyz",
"name": "Top Bar Organizer",
"description": "Organize the items of the top (menu)bar.",
"version": 1,
"shell-version": [ "40" ]
}