blob: b7431748429fdcdeb2f3bfca8b1b03c413955d4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
local astal = require("astal")
local Widget = require("astal.gtk3.widget")
local Notifications = require("widget.deck.notifications")
return function(gdkmonitor)
local Anchor = astal.require('Astal').WindowAnchor
return Widget.Window({
class_name = "deck",
gdkmonitor = gdkmonitor,
anchor = Anchor.TOP + Anchor.RIGHT,
layer = "OVERLAY",
Widget.Box({
vertical = true,
Notifications(),
}),
})
end
|