Change from dash to bash - qmenu - manage qubes os via dmenu (drkhsh fork)
HTML git clone git://git.drkhsh.at/qmenu.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 4539452bd22e506915afac89e6c5c4c356b718cc
DIR parent e527b15c0425a8348810c716010b3081c47d2cfd
HTML Author: sine3o14nnae <3o14@pm.me>
Date: Fri, 16 Aug 2019 16:51:03 +0200
Change from dash to bash
Diffstat:
M qmenu-usb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/qmenu-usb b/qmenu-usb
@@ -1,4 +1,4 @@
-#!/bin/dash
+#!/bin/bash
get_qube_label() {
@@ -60,7 +60,7 @@ if [ -n "$device" ]; then
get_qube_label
- prompt=`echo "No\nYes" |\
+ prompt=`echo -e "No\nYes" |\
dmenu -i -p "Attach $device_name to $target_qube?"\
-f -m 0 -nb $theme_0 -nf $theme_1 -sb $qube_label -sf $theme_1`
@@ -75,7 +75,7 @@ if [ -n "$device" ]; then
get_qube_label
- prompt=`echo "No\nYes" |\
+ prompt=`echo -e "No\nYes" |\
dmenu -i -p "Detach $device_name from $target_qube?"\
-f -m 0 -nb $theme_0 -nf $theme_1 -sb $qube_label -sf $theme_1`