-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.rasi
113 lines (91 loc) · 2.04 KB
/
config.rasi
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
/*******************************************************************************
* MACOS SPOTLIGHT LIKE DARK THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
@theme "/dev/null"
* {
font: "Roboto 12";
bg0: #1E1E1E;
bg1: #2E2E2E;
bg2: #2E2E2E;
fg0: #dedede;
fg1: #dedede;
fg2: #dedede;
accent: #5b9bf8;
background-color: transparent;
text-color: @fg0;
margin: 0;
padding: 0;
spacing: 0;
}
configuration {
show-icons: true;
icon-theme: "Papirus-Dark";
scroll-method: 1;
}
window {
background-color: @bg0;
location: center;
width: 465;
border-radius: 6px;
}
inputbar {
font: "Roboto 12";
background-color: @bg1;
border: 2px;
border-color: @accent;
border-radius: 12px;
padding: 10px 14px;
margin: 12px;
spacing: 12px;
children: [ icon-search, entry ];
}
icon-search {
expand: false;
filename: "search-symbolic";
size: 20px;
}
icon-search, entry, element-icon, element-text {
vertical-align: 0.5;
}
entry {
font: inherit;
placeholder : "";
placeholder-color : @fg2;
}
message {
border: 2px 0 0;
border-color: @bg1;
background-color: @bg1;
}
textbox {
padding: 8px 24px;
}
listview {
lines: 7;
columns: 1;
margin: 6px;
fixed-height: false;
border: 0;
border-color: @bg1;
}
element {
padding: 10px 14px;
spacing: 16px;
background-color: transparent;
border-radius: 6px;
}
element normal active {
text-color: @bg2;
}
element selected normal, element selected active {
background-color: @bg2;
text-color: @fg1;
}
element-icon {
size: 32px;
}
element-text {
text-color: inherit;
}