summary refs log tree commit diff
path: root/bin/menu
blob: 599d6ed1124b4ae372977e0ded4354291c50d025 (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
#!/bin/sh

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

exec "${arg0}" \
   --list=4 \
   --index \
   --ignorecase \
   --bottom \
   --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' \
   "$@"