aboutsummaryrefslogtreecommitdiff
path: root/roles/home/desktop/eww/panels/launcher.yuck
blob: a568346a27b6e3ae1595e5d3a53e826aad855f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(defwidget launcher []
    (box :class "launcher panel"
        :orientation "v"
        :spacing 8
        :space-evenly false
        :height {556 - ((128 + 16 + 4) + 8)}
        :width 768

        (input
            :valign "start"
        )

        (scroll
            :vscroll true
            :hscroll false
            :vexpand true
            
            (literal :content {lunch})
        )
    )
)

(defpoll lunch
    :interval "60s"
    ;`~/lunch.sh`
    `~/code/lunch/zig-out/bin/lunch`
)