wip build
This commit is contained in:
parent
a2f5eac28c
commit
3ae912d420
11 changed files with 3002 additions and 1 deletions
14
extension.ts
Normal file
14
extension.ts
Normal 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() {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue