blob: 983f8658f7f7ac692d05affb71a46bab9fb02439 (
plain) (
blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */
/* Starship Selector (tall) */
@import "~/.config/rofi/config-rofi-theme.rasi"
/* ---- Mainbox ---- */
mainbox {
children: [ "message", "listview" ];
spacing: 10px;
padding: 12px;
}
/* ---- Window ---- */
window {
width: 520px;
height: 620;
}
/* ---- Entry ---- */
entry {
enabled: false;
}
/* ---- Message ---- */
message {
enabled: true;
margin: 0px 6px 0px 6px;
padding: 10px;
border-radius: 10px;
background-color: inherit;
}
textbox {
text-color: inherit;
background-color: inherit;
}
/* ---- Listview ---- */
listview {
columns: 1;
lines: 13;
fixed-height: true;
margin: 8px 10px;
padding: 6px;
scrollbar: false;
spacing: 4px;
cycle: true;
}
element {
padding: 6px;
}
/* ---- Elements ---- */
element-icon {
size: 0%;
}
element-text {
horizontal-align: 0.0;
vertical-align: 0.5;
margin: 0px;
padding: 0px;
}
|