debian-btw

debian-btw

https://git.tonybtw.com/debian-btw.git git://git.tonybtw.com/debian-btw.git
1,316 bytes raw
1
configuration {
2
	modi: "drun";
3
	font: "JetBrainsMono Nerd Font 10";
4
	show-icons: false;
5
	terminal: "alacritty";
6
	icon-theme: "Papirus-Dark";
7
	drun-display-format: "{name}";
8
	display-drun: "";
9
  timeout {
10
      action: "kb-cancel";
11
      delay:  0;
12
  }
13
  filebrowser {
14
      directories-first: true;
15
      sorting-method:    "name";
16
  }
17
}
18
19
@theme "/dev/null"
20
21
* {
22
    bg: #232933;
23
    fg: #d8dee9;
24
    selected: #2d3543;
25
    accent: #4d6a8e;
26
    background-color: @bg;
27
28
    color: @fg;
29
    border: 0;
30
    border-color: @bg;
31
    margin: 0;
32
    padding: 0;
33
    spacing: 0;    
34
    highlight: none;
35
}
36
37
window {
38
    width: 700px;
39
}
40
41
element {
42
    padding: 6 5 7 5;
43
    text-color: @fg;
44
}
45
46
element-text {
47
    vertical-align: 0.5;
48
    padding: 5px;
49
}
50
51
element selected {
52
    background-color: @selected;
53
}
54
55
element-text selected {
56
    background-color: @selected;
57
}
58
59
element-icon selected {
60
    background-color: @selected;
61
}
62
63
element-icon {
64
    size: 30;
65
}
66
67
entry {
68
    background-color: @bg;
69
    columns: 1;
70
    lines: 20;
71
}
72
73
inputbar {
74
    children: [prompt, entry];
75
}
76
77
prompt {
78
    text-color: @bg;
79
    background-color: @accent;
80
    padding: 12 12 12 12;
81
}
82
83
entry {
84
    text-color: @bg;
85
    background-color: @accent;
86
    padding: 12 5 12 0;
87
}
88
89
listview {
90
    background-color: @bg;
91
    columns: 3;
92
    lines: 6;
93
}