blob: d41fefde280668e6df3cdc775cf74d5e7f72fbc7 (
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
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (compact) */
@import "~/.config/rofi/config.rasi"
/* ---- Configuration ---- */
configuration {
modi: "drun";
}
/* ---- Window ---- */
window {
width: 500px;
border-radius: 15px;
}
/* ---- Imagebox ---- */
imagebox {
orientation: vertical;
children:
[ "entry", "listview"];
}
entry {
width: 400px;
placeholder: " View / Edit Hyprland Configs";
}
/* ---- Listview ---- */
listview {
columns: 1;
lines: 10;
spacing: 4px;
scrollbar: false;
border-radius: 10px;
}
/* ---- Element ---- */
element {
border-radius: 10px;
}
|