blob: f6cf02b461c41c84bb823100cc32ba77693988f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
(defwindow music [pos gaps]
:monitor "<primary>"
:geometry (geometry
:x {
pos == "right"
? gaps == "true"
? "-8px" : "2px"
: "0px"
}
:y { gaps == "true" ? "-8px" : "2px" }
:width 512
:anchor { pos == "right" ? "bottom right" : "bottom center" }
)
:stacking "fg"
:windowtype "dock"
:wm-ignore true
(music)
)
|