wip build

This commit is contained in:
Henry Hiles 2025-08-10 12:42:50 -04:00
commit 3ae912d420
No known key found for this signature in database
11 changed files with 3002 additions and 1 deletions

14
extension.ts Normal file
View file

@ -0,0 +1,14 @@
import { Extension } from "resource:///org/gnome/shell/extensions/extension.js"
import * as Main from "resource:///org/gnome/shell/ui/main.js"
import * as MessageTray from "resource:///org/gnome/shell/ui/messageTray.js"
export default class MyExtension extends Extension {
enable() {
Main.notify(
"Simple Notification",
"A notification with a title and body"
)
}
disable() {}
}