diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-11 09:28:48 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-11 09:28:48 +0200 |
| commit | ee0d7dc01d5c574e500bd352c2b49ec73bb5db52 (patch) | |
| tree | b5ab089e5d2f4d45d66a3a526294b8601df81113 /rofi | |
| parent | 306c1f065724722ea24f407c2aaad8f6fed64080 (diff) | |
| download | unified-desktop-theme-ee0d7dc01d5c574e500bd352c2b49ec73bb5db52.tar.gz unified-desktop-theme-ee0d7dc01d5c574e500bd352c2b49ec73bb5db52.zip | |
feat: add udt menu layout
No search bar: with a handful of fixed options, typing to filter is pointless
and the bar only adds bulk.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01G6aeE37K4GHBsaM51yLTTq
Diffstat (limited to 'rofi')
| -rw-r--r-- | rofi/udt/menu.rasi | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/rofi/udt/menu.rasi b/rofi/udt/menu.rasi new file mode 100644 index 0000000..5d8310b --- /dev/null +++ b/rofi/udt/menu.rasi @@ -0,0 +1,28 @@ +/* + * udt menu layout: a small box for a few fixed options. + * For the screenshot menu, notes actions, the power menu. + * Copyright (C) 2026 Danilo M. <danix@danix.xyz> + * Licensed under the GNU General Public License v2 only. + */ + +@import "common.rasi" + +window { + width: 380px; + anchor: center; + location: center; +} + +mainbox { + children: [ listview ]; +} + +listview { + columns: 1; + lines: 6; + fixed-height: false; +} + +element { + padding: 10px 12px; +} |
