blob: 4f6ba64a6e7e1d927a409cce13edf0bfb85b2d09 (
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
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (zsh) */
/* -- submitted by https://github.com/hyprhex -- */
@import "~/.config/rofi/config.rasi"
/* ---- Configuration ---- */
configuration {
modi: "drun";
}
/* ---- Window ---- */
window {
width: 800px;
}
/* ---- Mainbox ---- */
mainbox {
orientation: horizontal;
children: [ "imagebox"];
}
/* ---- Imagebox ---- */
imagebox {
orientation: vertical;
children:
[ "inputbar",
"listbox"];
}
/* ---- Inputbar ---- */
inputbar {
padding: 8px;
border-radius: 10px;
children:
[ "textbox-prompt-colon",
"entry"];
}
textbox-prompt-colon {
str: " ";
}
entry {
placeholder: "Choose ZSH theme";
}
/* ---- Listview ---- */
listview {
columns: 3;
spacing: 4px;
scrollbar: true;
}
|