blob: aef78711eef653d0bed4921444da07ef9d4b018e (
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
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (long) */
@import "~/.config/rofi/config.rasi"
/* ---- Configuration ---- */
configuration {
modi: "drun";
}
/* ---- Window ---- */
window {
width: 700px;
}
/* ---- Mainbox ---- */
mainbox {
children: [ "imagebox"];
}
/* ---- Imagebox ---- */
imagebox {
orientation: vertical;
children:
[ "inputbar",
"listbox"];
}
/* ---- Inputbar ---- */
inputbar {
children:
[ "textbox-prompt-colon",
"entry"];
}
textbox-prompt-colon {
str: "🔎 ";
}
entry {
placeholder: "Search";
background-color: transparent;
}
/* ---- Listview ---- */
listview {
columns: 1;
lines: 9;
spacing: 4px;
scrollbar: true;
fixed-columns: true;
border-radius: 10px;
}
/*****----- Message -----*****/
message {
background-color: transparent;
border-radius: 10px;
}
textbox {
padding: 6px;
background-color: transparent;
}
|