-
Notifications
You must be signed in to change notification settings - Fork 2
/
sample.rofi
91 lines (77 loc) · 2.04 KB
/
sample.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
configuration {
modi: "drun";
font: "Hack Nerd Font Mono 10";
show-icons: true;
icon-theme: "Reversal-dark";
display-drun: "";
drun-display-format: "{name}";
sidebar-mode: false;
}
@theme "/dev/null"
* {
bg: #151515;
fg: #e8e8d3;
accent: #687363;
button: #1c1c1c;
background-color: @bg;
text-color: @fg;
}
window {
border-radius: 7px;
width: 50%;
padding: 32px;
}
prompt {
background-color: @button;
enabled: true;
font: "Hack Nerd Font Mono 10";
}
entry {
placeholder: "Search";
background-color: @button;
placeholder-color: @fg;
expand: true;
padding: 0 0 0 10px;
}
inputbar {
children: [ prompt, entry ];
background-color: @button;
expand: false;
border-radius: 6px;
margin: 0%;
padding: 10px;
}
listview {
columns: 4;
lines: 3;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
children: [ inputbar, listview ];
spacing: 2%;
padding: 2% 1% 2% 1%;
}
element {
orientation: vertical;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 48px;
horizontal-align: 0.5;
}
element-text {
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 0.5% 0.5% -0.5% 0.5%;
}
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
element selected {
background-color: @button;
border-radius: 6px;
}