blob: 835c13e6abd6b76732cc09368641385cecd99bc9 (
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
|
/*
* udt list layout: a tall, searchable, single-column list.
* For ssh hosts, passwords, emoji, VMs, repos, windows, clipboard.
* Copyright (C) 2026 Danilo M. <danix@danix.xyz>
* Licensed under the GNU General Public License v2 only.
*/
@import "common.rasi"
window {
width: 680px;
anchor: center;
location: center;
}
mainbox {
children: [ inputbar, listview ];
}
listview {
columns: 1;
lines: 12;
fixed-height: false;
}
|