blob: c48c617f34112497d2809f0ea93a2bfec0728236 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
@theme "/dev/null"
@import "macchiato.rasi"
configuration {
show-icons: false;
}
* {
background-color: @mantle;
}
window {
children: [ horibox ];
border: 1;
border-radius: 10;
border-color: @surface0;
padding: 10;
width: 313px;
}
horibox {
orientation: horizontal;
children: [ listview ];
}
listview {
layout: horizontal;
spacing: 10;
lines: 4;
}
element {
text-color: @overlay0;
border: 1;
border-radius: 5;
background-color: @crust;
padding: 15;
}
element-text {
font: "Symbols Nerd Font Mono 25";
text-color: inherit;
background-color: inherit;
vertical-align: 0.5;
}
element selected{
text-color: @base;
background-color: @text;
}
|