feat: nixos dbus availability

This commit is contained in:
2025-05-15 18:38:00 +02:00
parent e4744bab81
commit 82b0cf7aaa
5 changed files with 91 additions and 32 deletions

View File

@@ -0,0 +1,24 @@
from fabric.widgets.wayland import WaylandWindow as Window
from fabric.widgets.box import Box
from fabric.widgets.label import Label
class FuzzyWindowFinder(Window):
def __init__(
self,
monitor: int = 1,
):
super().__init__(
name="finder",
layer="overlay",
anchor="center",
margin="0px 0px -2px 0px",
exclusivity="auto",
visible=False,
all_visible=False,
monitor=monitor,
)
self.children = Box(
name="list-windows", children=[Label(name="one-window", markup="Hallo lol")]
)