diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-11 09:37:28 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-11 09:37:28 +0200 |
| commit | 51712ec3c966bea7865b83747a84c2c9f0a4829b (patch) | |
| tree | d36353dbab87056abcea5293546926c3d126c248 /rofi/udt/common.rasi | |
| parent | 90e3eded1c781c160dcc1dfc4a32b3cf68157d22 (diff) | |
| download | unified-desktop-theme-51712ec3c966bea7865b83747a84c2c9f0a4829b.tar.gz unified-desktop-theme-51712ec3c966bea7865b83747a84c2c9f0a4829b.zip | |
feat: drop the prompt label from the input bar
The mode label ("Apps", "power") is noise on a desktop utility: it is always
obvious which one was just opened. Removed in common.rasi so every layout
inherits it, and the placeholder text is cleared for the same reason.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01G6aeE37K4GHBsaM51yLTTq
Diffstat (limited to 'rofi/udt/common.rasi')
| -rw-r--r-- | rofi/udt/common.rasi | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/rofi/udt/common.rasi b/rofi/udt/common.rasi index 327e5a9..0b9526b 100644 --- a/rofi/udt/common.rasi +++ b/rofi/udt/common.rasi @@ -34,20 +34,18 @@ mainbox { spacing: 12px; } +/* No prompt widget: the mode label ("Apps", "power") is noise on a desktop + * utility, where it is always obvious what was just opened. */ inputbar { background-color: @surface0; border-radius: 6px; padding: 10px 12px; spacing: 8px; - children: [ prompt, entry ]; -} - -prompt { - text-color: @accent; + children: [ entry ]; } entry { - placeholder: "search"; + placeholder: ""; placeholder-color: @overlay0; cursor: text; } |
