1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-30 00:12:50 -05:00

cli: add interactive color picker

This commit is contained in:
bbedward
2025-12-03 22:29:57 -05:00
parent 6c7776a9a6
commit d9deaa8d74
13 changed files with 4673 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package xdg_shell
import "github.com/AvengeMedia/DankMaterialShell/core/pkg/go-wayland/wayland/client"
type Popup struct {
client.BaseProxy
}
func NewPopup(ctx *client.Context) *Popup {
p := &Popup{}
ctx.Register(p)
return p
}