blob: 3b57696598f0044f87fe5590cab28396508200c3 (
plain)
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
|
/*
* udt launcher layout: a searchable icon grid for launching applications.
* Copyright (C) 2026 Danilo M. <danix@danix.xyz>
* Licensed under the GNU General Public License v2 only.
*/
@import "common.rasi"
window {
width: 880px;
anchor: center;
location: center;
}
mainbox {
children: [ inputbar, listview ];
}
listview {
columns: 3;
lines: 6;
fixed-height: false;
}
element {
padding: 10px;
spacing: 12px;
}
element-icon {
size: 2.2em;
}
|