blob: b1ec4fa66c779c25cb07e98b927ef4d89426a532 (
plain) (
blame)
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
|
/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */
/* Main Config (wallpaper) */
@import "~/.config/rofi/config.rasi"
/* ---- Configuration ---- */
configuration {
modi: "drun";
}
window {
width: 75%;
height: inherit;
}
/* ---- Mainbox ---- */
mainbox {
children:
[ "inputbar", "listview"];
}
entry {
expand: true;
placeholder: " 🎞️ Search / Choose Wallpaper";
horizontal-align: 0.5;
horizontal-align: 0.5;
}
/* ---- Listview ---- */
listview {
columns: 6;
lines: 2;
spacing: 20px;
padding: 10px;
columns: 6;
lines: 2;
flow: horizontal;
fixed-width: true;
fixed-height: true;
cycle: true;
}
/* ---- Element ---- */
element {
orientation: vertical;
padding: 0px;
spacing: 0px;
border-radius: 10px;
padding: 0px;
margin: 0px;
}
element selected.normal {
background-color: transparent;
}
element-icon {
text-color: inherit;
size: 10%;
margin: -30px;
cursor: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
padding: 6px;
margin: 6px;
}
|