Skip to content

Commit

Permalink
Minor bugfixes in 'gum' mode
Browse files Browse the repository at this point in the history
  • Loading branch information
vaisarger committed Mar 26, 2024
1 parent 34b84c2 commit 2c9fb65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/easybashgui.lib
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,8 @@ elif [ "${mode}" = "gum" ]
#
frame "${widget_color}" "please confirm"
#
if [ "${which_terminal}" = "mate-terminal" -o "${which_terminal}" = "qterminal" -o "${which_terminal}" = "lxterminal" ]
[[ ${which_terminal} == "gnome-terminal"* ]] && which_terminal="gnome-terminal"
if [ "${which_terminal}" = "gnome-terminal" -o "${which_terminal}" = "mate-terminal" -o "${which_terminal}" = "qterminal" -o "${which_terminal}" = "konsole" ]
then
#
gum confirm --affirmative="Ok" --negative="Cancel" "$(echo -e "${testo}" )"
Expand Down

0 comments on commit 2c9fb65

Please sign in to comment.