summary refs log tree commit diff
path: root/bin/menu
blob: dc5339ecd9b0ae597a4581705a84394cd2165a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

arg0=bemenu
prompt=${MENU_PROMPT:-">"}
while test $# -gt 0; do
   case "$1" in
      -run)
         arg0=bemenu-run; prompt=bin ;;
      -p)
         shift; prompt="$1" ;;
   esac
   shift
done

exec "${arg0}" \
   --bottom \
   --ignorecase \
   --list=4 \
   --index \
   --no-overlap \
   --prompt "${prompt}" \
   --fn 'Iosevka Sparkle 11' \
   --nb '#221E1D' --nf '#fffefe' \
   --tb '#0B346F' --tf '#fffefe' \
   --fb '#221E1D' --ff '#fffefe' \
   --sb '#FAD689' \
   --sf '#221E1D' \
   --hb '#0B346F' \
   --hf '#FCFAF2' \
   --scb '#221E1D' --scf '#fffefe' \
   "$@"