blob: b2a79bc28cc182f2c1c2ced7bb347a3b7d8641ff (
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
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (wallpaper) */
@import "~/.config/rofi/config.rasi"
/* ---- Configuration ---- */
configuration {
modi: "drun";
}
/* ---- Mainbox ---- */
mainbox {
orientation: horizontal;
children: [ "imagebox"];
}
/* ---- Imagebox ---- */
imagebox {
orientation: vertical;
children:
[ "inputbar",
"listbox"];
}
textbox-prompt-colon {
str: " ";
}
entry {
placeholder: "Choose Wallpaper";
}
/* ---- Listview ---- */
listview {
columns: 4;
lines: 3;
scrollbar: true;
}
/* ---- Element ---- */
element {
orientation: vertical;
}
element-icon {
size: 130px;
}
element-text {
font: "Fira Code SemiBold 8";
}
|