bemenu wrapper fixed

This commit is contained in:
Sergei Akhmatdinov 2025-12-28 16:19:40 -05:00
parent 0f44c7b29f
commit 5cbfa65bbe
1 changed files with 17 additions and 9 deletions

View File

@ -1,12 +1,20 @@
#!/bin/sh #!/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 \ bemenu-run \
--nb "#222222" \ --nb "#4B7B82" --nf "#ffffff" \
--nf "#bbbbbb" \ --sb "#374D4E" --sf "#ffffff" \
--sb "#005577" \ --tb "#4B7B82" --tf "#ffffff" \
--sf "#eeeeee" \ --fb "#4B7B82" --ff "#ffffff" \
--fn "Inconsolata LGC 10" \ --fn "Input Mono 13" \
-p "Run:" \ -p "Run:" \
--tf "#005577" \ --hb "#374D4E" --hf "#ffffff" \
--hb "#005577" \ "$@"
--hf "#eeeeee" "$@"