mirror of
https://gitlab.gnome.org/june/top-bar-organizer.git
synced 2026-01-11 16:53:51 +01:00
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:
parent
1c7cafaff9
commit
821d849668
2 changed files with 23 additions and 0 deletions
16
src/extension.js
Normal file
16
src/extension.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
"use strict";
|
||||
|
||||
class Extension {
|
||||
constructor() {
|
||||
}
|
||||
|
||||
enable() {
|
||||
}
|
||||
|
||||
disable() {
|
||||
}
|
||||
}
|
||||
|
||||
function init() {
|
||||
return new Extension();
|
||||
}
|
||||
7
src/metadata.json
Normal file
7
src/metadata.json
Normal 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" ]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue