mirror of
https://gitlab.gnome.org/julianschacher/top-bar-organizer.git
synced 2025-10-27 07:09:07 +00: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
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…
x
Reference in New Issue
Block a user