blob: 60e4e2233b6af2aa9b843ecff55a07856aa50d89 (
plain)
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
161
162
163
|
/**
*
* Author : Aditya Shakya (adi1090x)
* Github : @adi1090x
*
* Rofi Theme File
* Rofi Version: 1.7.3
**/
/*****----- Configuration -----*****/
configuration {
modi: "drun";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";
window-format: "{w} {c} {t}";
}
/*****----- Global Properties -----*****/
* {
font: "Iosevka Nerd Font 10";
}
/*****----- Main Window -----*****/
window {
/* properties for window widget */
transparency: "real";
location: center;
anchor: center;
fullscreen: false;
width: 800px;
x-offset: 0px;
y-offset: 0px;
/* properties for all widgets */
enabled: true;
margin: 0px;
padding: 0px;
border-radius: 20px;
cursor: "default";
background-color: #162022;
background-image: url("~/.config/rofi/images/flowers-1.png", width);
}
/*****----- Main Box -----*****/
mainbox {
enabled: true;
spacing: 20px;
padding: 40px;
background-color: transparent;
children: [ "inputbar", "listview" ];
}
/*****----- Inputbar -----*****/
inputbar {
enabled: true;
spacing: 0px;
margin: 0px 200px 0px 0px;
padding: 25px;
border: 2px;
border-radius: 20px;
border-color: white;
background-image: url("~/.config/rofi/images/flowers-3.png", none);
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
padding: 8px 11px;
border-radius: 8px;
background-color: white;
text-color: black;
str: "";
}
entry {
enabled: true;
padding: 8px 12px;
border: 0px;
background-color: transparent;
text-color: white;
cursor: text;
placeholder: "Search...";
placeholder-color: inherit;
vertical-align: 0.5;
horizontal-align: 0.0;
}
/*****----- Listview -----*****/
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 10px;
margin: 0px 200px 0px 0px;
padding: 10px;
border: 2px;
border-radius: 20px;
border-color: white;
background-image: url("~/.config/rofi/images/flowers-2.png", width);
cursor: "default";
}
/*****----- Elements -----*****/
element {
enabled: true;
spacing: 10px;
margin: 0px;
padding: 5px 10px;
border: 0px;
border-radius: 18px;
border-color: white;
background-color: transparent;
text-color: #162022;
cursor: pointer;
}
element selected.normal {
background-color: #162022;
text-color: white;
}
element-icon {
background-color: transparent;
size: 32px;
cursor: inherit;
}
element-text {
background-color: inherit;
text-color: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0.0;
}
/*****----- Message -----*****/
error-message {
padding: 20px;
background-color: transparent;
text-color: white;
}
message {
padding: 0px;
background-color: inherit;
text-color: #FF9030;
}
textbox {
padding: 0px;
border-radius: 0px;
background-color: inherit;
text-color: inherit;
vertical-align: 0.5;
horizontal-align: 0.0;
}
|