blob: 772cd6fe447be48d9ebcfc3cff1d13d839cd1e85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
# Source settings from .bemenurc
. ~/.config/bemenurc
title="Run:"
action=""
case $1 in
-x)
action="xway"
title="Run through xwayland:";;
-t)
action="$TERMINAL"
title="Run in terminal:";;
esac
program="$(compgen -c | sort -u | bemenu -p "$title" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB" --monitor="$BEMENU_MONITOR")"
[ -n "$action" ] && $action "$program" && exit 0
$program
|