Fix rofi prompts

This commit is contained in:
2020-12-11 20:06:59 +01:00
parent 43efd64ac1
commit 0b111b88fe
2 changed files with 2 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
#!/usr/bin/env bash
rofi -show combi -combi-modi run,drun -display-combi "run > "
rofi -show combi -combi-modi run,drun -display-combi "run"

View File

@@ -14,6 +14,6 @@ output=$(
for option in "${options[@]}"; do
echo "($i) $option"
(( i++ ))
done | rofi -dmenu -p "action: " -no-custom)
done | rofi -dmenu -p "action" -no-custom)
[[ "$output" ]] && "$(dirname "$0")"/i3exit "${output#(*) }"