This commit is contained in:
Lilith 2024-06-11 22:04:10 +02:00
parent 16ecb2818a
commit e0ef3cba34
Signed by: lilith
GPG key ID: 8712A0F317C37175
4 changed files with 217 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import { Media } from "./Media.js"
const win = Widget.Window({
name: "mpris",
anchor: ["top", "right"],
child: Media(),
})
App.config({
style: "./style.css",
windows: [win],
})