21 lines
597 B
Bash
Executable File
21 lines
597 B
Bash
Executable File
#!/bin/sh
|
|
# 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 "#4B7B82" --nf "#ffffff" \
|
|
--sb "#374D4E" --sf "#ffffff" \
|
|
--tb "#4B7B82" --tf "#ffffff" \
|
|
--fb "#4B7B82" --ff "#ffffff" \
|
|
--fn "Input Mono 13" \
|
|
-p "Run:" \
|
|
--hb "#374D4E" --hf "#ffffff" \
|
|
"$@"
|