bemenu wrapper fixed
This commit is contained in:
parent
0f44c7b29f
commit
5cbfa65bbe
|
|
@ -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" \
|
||||
"$@"
|
||||
|
|
|
|||
Loading…
Reference in New Issue