blob: ffedba56ccd430cdf6b3f7665af4909490764d8a (
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
65
66
67
68
|
/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */
/* Oh My ZSH Theme */
@import "~/.config/rofi/config.rasi"
/* ---- Configuration ---- */
configuration {
modi: "drun";
}
/* ---- Window ---- */
window {
width: inherit;
height: inherit;
border-radius: 15px;
}
mainbox {
children: [ "inputbar" , "listview" ];
}
/* ---- Listbox ---- */
listbox {
border-radius: 12px;
}
/* ---- Inputbar ---- */
inputbar {
padding: 14px;
border-radius: 10px;
}
entry {
expand: true;
placeholder: " 🐾 Choose Kitty theme: Enter to Preview; CTRL S to Apply";
}
/* ---- Listview ---- */
listview {
columns: 3;
lines: 4;
spacing: 4px;
border-radius: 10px;
cycle: true;
}
/* ---- Element ---- */
element {
orientation: horizontal;
}
/* ---- Message ---- */
message {
border-radius: 10px;
}
textbox {
padding: 15px;
}
/* ---- Element ---- */
element-icon {
size: 0%;
}
element-text {
horizontal-align: 0.0;
margin: 5px 30px 5px 30px;
}
|