-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblackwiterofi.rasi
More file actions
94 lines (81 loc) · 1.95 KB
/
blackwiterofi.rasi
File metadata and controls
94 lines (81 loc) · 1.95 KB
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
92
93
94
* {
bg-module: #000000cc;
white: #ffffff;
gray: #666666;
background-color: transparent;
text-color: @white;
font: "JetBrains Mono 11";
}
window {
location: center;
anchor: center;
width: 600px;
background-color: transparent;
enabled: true;
}
mainbox {
enabled: true;
spacing: 2px;
background-color: transparent;
children: [ "inputbar", "listview" ];
}
inputbar {
enabled: true;
padding: 20px 25px;
background-color: @bg-module;
border: 1px;
border-color: @white;
border-radius: 12px;
children: [ "prompt", "entry" ];
}
prompt {
enabled: true;
text-color: @white;
font: "JetBrains Mono Bold 12";
}
entry {
enabled: true;
placeholder: "Execute command...";
placeholder-color: @gray;
}
listview {
enabled: true;
columns: 1;
lines: 7;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
fixed-height: false;
spacing: 5px;
margin: 5px;
padding: 15px;
background-color: @bg-module;
border: 1px;
border-color: @white;
border-radius: 12px;
}
element {
enabled: true;
spacing: 15px;
padding: 8px 12px;
cursor: pointer;
border: 2px;
border-color: transparent;
border-radius: 8px;
}
element selected.normal {
background-color: transparent;
border: 2px;
border-color: @white;
text-color: @white;
}
element-icon {
size: 24px;
cursor: inherit;
}
element-text {
vertical-align: 0.5;
cursor: inherit;
text-color: inherit;
}