diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-11 09:28:49 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-11 09:28:49 +0200 |
| commit | 71a210e3a0d79541823db26680126fe1f03847cb (patch) | |
| tree | 11cb1dda34075c79bf2288d7588ee7b9e2ebeec8 | |
| parent | ee0d7dc01d5c574e500bd352c2b49ec73bb5db52 (diff) | |
| download | unified-desktop-theme-71a210e3a0d79541823db26680126fe1f03847cb.tar.gz unified-desktop-theme-71a210e3a0d79541823db26680126fe1f03847cb.zip | |
feat: add udt launcher layout
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01G6aeE37K4GHBsaM51yLTTq
| -rw-r--r-- | rofi/udt/launcher.rasi | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/rofi/udt/launcher.rasi b/rofi/udt/launcher.rasi new file mode 100644 index 0000000..3b57696 --- /dev/null +++ b/rofi/udt/launcher.rasi @@ -0,0 +1,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; +} |
