blob: 22fabdd680c1387bbee680316e239fd9cef42754 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/bin/bash
set -ex
[ -n "$DEBUG" ] && set -x
# make sure there we are the only running menu
pgrep tofi >/dev/null && killall -INT tofi
# always source the config to make sure
# . "$HOME"/.config/bemenu.conf
arg0=tofi
prompt=${MENU_PROMPT:-}
args=
tot=$#
idx=0
while test $tot -ge $idx; do
case "$1" in
-run)
arg0=tofi-run
prompt=""
shift
;;
-drun)
arg0=tofi-drun
prompt=""
shift
;;
# dmenu compat
-p)
shift
prompt="$1"
shift
;;
-x)
shift
MENU_PASSWORD=1
;;
-i)
shift
;;
# bemenu compat
-l*)
num=$(cut -c3- <<<"$1")
shift
if [ -z "$num" ]; then
num=$1
shift
fi
args="$args --num-results=$num"
;;
--prompt)
shift
args="$args --prompt-text"
;;
--ifne)
shift
args="$args --require-match=true"
;;
--accept-single)
shift
args="$args --autoselect=true"
;;
esac
idx=$((idx + 1))
done
[ -n "${MENU_PASSWORD}" ] && args="${args} --hide-input=true"
exec "${arg0}" --prompt "${prompt}" ${args} "$@"
|