From 5cbfa65bbe70b817b9cdc1a7ca60f0b7f4b09c82 Mon Sep 17 00:00:00 2001 From: Sergei Akhmatdinov Date: Sun, 28 Dec 2025 16:19:40 -0500 Subject: [PATCH] bemenu wrapper fixed --- wayland/.local/bin/bemenu | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/wayland/.local/bin/bemenu b/wayland/.local/bin/bemenu index b961b9f..168f8c2 100755 --- a/wayland/.local/bin/bemenu +++ b/wayland/.local/bin/bemenu @@ -1,12 +1,20 @@ #!/bin/sh -# Wrapper to make bemenu look like DWM dmenu +# Palette: +# #4B7B82 (Main Teal - Waybar Background) +# #374D4E (Dark Teal - Waybar Modules) +# #ffffff (White) + +# --nb/nf : Normal (list items) Background / Foreground +# --sb/sf : Selected (highlighted item) Background / Foreground +# --tb/tf : Title ("Run:") Background / Foreground +# --fb/ff : Filter (what you type) Background / Foreground + bemenu-run \ - --nb "#222222" \ - --nf "#bbbbbb" \ - --sb "#005577" \ - --sf "#eeeeee" \ - --fn "Inconsolata LGC 10" \ + --nb "#4B7B82" --nf "#ffffff" \ + --sb "#374D4E" --sf "#ffffff" \ + --tb "#4B7B82" --tf "#ffffff" \ + --fb "#4B7B82" --ff "#ffffff" \ + --fn "Input Mono 13" \ -p "Run:" \ - --tf "#005577" \ - --hb "#005577" \ - --hf "#eeeeee" "$@" + --hb "#374D4E" --hf "#ffffff" \ + "$@"