local astal = require("astal") local Widget = require("astal.gtk3.widget") return function(gdkmonitor) local Anchor = astal.require('Astal').WindowAnchor return Widget.Window({ class_name = "corners", gdkmonitor = gdkmonitor, anchor = Anchor.TOP + Anchor.BOTTOM + Anchor.LEFT + Anchor.RIGHT, exclusivity = "EXCLUSIVE", setup = function(self) self.click_through = true end, Widget.Box({ expand = true, }) }) end