Remove unnecessary '\n'

pull/2/head
Nikita Ivanov 2 years ago
parent 1be1094f41
commit 7b39af75f2
No known key found for this signature in database
GPG Key ID: 6E656AC5B97B5133

@ -65,7 +65,7 @@ case $menu in
esac
# Run rofi/dmenu, replace display checkmarks with raw syntax
selection=`printf "%s%s%s\n" "$clear" "$clear_completed" "$list" | eval "$command -i $options -p \" Task:\""`
selection=`printf "%s%s%s" "$clear" "$clear_completed" "$list" | eval "$command -i $options -p \" Task:\""`
selection=${selection//"$EMPTY"/"$EMPTY_RAW"}
selection=${selection//"$FILLED"/"$FILLED_RAW"}