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:
June 2021-05-12 12:31:03 +02:00
commit 821d849668
No known key found for this signature in database
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" ]
}