blob: 8d317b0085397fe9bd518f242bcd63763efd76a2 (
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
69
70
71
72
73
74
|
/* ================================================== */
/* KoolDots (2026) */
/* Project URL: https://github.com/LinuxBeginnings */
/* License: GNU GPLv3 */
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* ================================================== */
/* Ghostty Theme Selector */
@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 Ghostty theme: Enter 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;
}
|