X-Git-Url: https://git.danieliu.xyz/?p=dotfiles.git;a=blobdiff_plain;f=Scripts%2Fdmenu%2FStaskell;h=d982d0b8ba956ab6f48ced37d7f72897b5c35b32;hp=fa968cfdf5152a42181d0edd862203b5efc98e12;hb=68c67b541445ec5c32c4660243d906b4c5479115;hpb=6b58ea8b8d9799698f147e5677b4b6e6d47a7e9d diff --git a/Scripts/dmenu/Staskell b/Scripts/dmenu/Staskell index fa968cf..d982d0b 100755 --- a/Scripts/dmenu/Staskell +++ b/Scripts/dmenu/Staskell @@ -10,7 +10,7 @@ boards_path="$HOME/.config/taskell/boards/" ( cd "$boards_path" board="new_board" - mode=$(echo -e "o\nn" | dmenu -i -p "Open board (O) or create new board (N)?") + mode=$(printf "o\nn" | dmenu -i -p "Open board (O) or create new board (N)?") [ $mode = "n" ] && board=$(dmenu -p "Choose a name for the board") || \ [ $mode = "o" ] && board=$(ls -1 | dmenu -i -p "Choose board to open")