-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathrofi.rasi
More file actions
160 lines (142 loc) · 3.08 KB
/
Copy pathrofi.rasi
File metadata and controls
160 lines (142 loc) · 3.08 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
configuration {
font: "Inter Regular 10";
sidebar-mode: true;
show-icons: true;
fullscreen: false;
threads: 0;
matching: "fuzzy";
scroll-method: 0;
monitor: "primary";
}
* {
transparent: #00000000;
foreground: #F2F2F2EE;
background-selected: #F2F2F245;
background-active: #F2F2F230;
background-white: #F2F2F211;
background-black: #00000000;
urgent: #E91E6366;
urgent-selected: #E91E6377;
}
window {
transparency: "real";
background-color: @transparent;
text-color: @foreground;
location: west;
anchor: west;
x-offset: 0;
height: 100%;
width: 350px;
orientation: vertical;
}
prompt {
enabled: false;
}
button {
action: "ok";
str: " ";
font: "FantasqueSansMono Nerd Font 16";
expand: false;
text-color: @foreground;
background-color: @transparent;
vertical-align: 0.5;
horizontal-align: 0.5;
}
entry {
font: "Inter Regular 12";
background-color: @transparent;
text-color: @foreground;
expand: true;
vertical-align: 0.5;
horizontal-align: 0;
placeholder: "Global Search";
placeholder-color: @foreground;
blink: true;
}
entry-wrapper {
orientation: horizontal;
margin: 0 12px 0 12px;
spacing: 24px;
vertical-align: 0.5;
background-color: @transparent;
children: [ button, entry ];
}
inputbar {
padding: 14px;
margin: 10px 10px 14px 10px;
background-color: @background-white;
text-color: @foreground;
expand: false;
border-radius: 9px;
position: north;
children: [ entry-wrapper ];
}
listview {
background-color: @transparent;
spacing: 0;
cycle: true;
dynamic: true;
scrollbar: true;
}
mainbox {
width: 200px;
expand: true;
spacing: 12px;
padding: 5px;
background-color: @background-black;
children: [ inputbar, listview ];
}
scrollbar {
background-color: @background-white;
handle-width: 0;
margin: 0 0 5px 0;
border-radius: 9px;
}
element {
background-color: @transparent;
text-color: @foreground;
orientation: horizontal;
border: 0;
border-color: @background-white;
border-radius: 6px;
spacing: 24px;
margin: 0px 12px 0px 12px;
padding: 10px 24px 10px 24px;
}
element-icon {
background-color: @transparent;
size: 24px;
border: 0;
border-color: @transparent;
}
element-text {
background-color: @transparent;
text-color: @foreground;
font: "Inter Regular 11";
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 9px;
}
element normal.active,
element alternate.active {
background-color: @background-active;
text-color: @foreground;
}
element selected {
background-color: @background-selected;
text-color: @foreground;
}
element selected.urgent {
background-color: @urgent-selected;
text-color: @foreground;
}
element selected.active {
background-color: @background-active;
color: @foreground-selected;
}