-
Notifications
You must be signed in to change notification settings - Fork 2
/
rofi
56 lines (44 loc) · 884 Bytes
/
rofi
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
configuration {
fullscreen: true;
}
* {
font: "{{font.regular}} {{rofi_font_size}}";
background-color: #{{colors.background}};
text-color: #{{colors.text}};
}
// Window
window {
padding: {{rofi_padding}};
background-color: #00000000;
}
mainbox {
border-color: #{{colors.background_bright}};
border: 3;
}
// Input
inputbar {
border-color: #{{colors.background_bright}};
border: 0 0 3 0;
children: [prompt, textbox-prompt-colon, entry];
}
prompt {
text-color: #{{colors.text_muted}};
}
textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 10px 0px 0px;
text-color: #{{colors.text_muted}};
}
entry {
text-color: #{{colors.text_bright}};
}
// Items
listview {
spacing: 0px;
border: 0;
}
element selected {
background-color: #{{colors.background_alt}};
text-color: #{{colors.text_bright}};
}