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