1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43:00 +02:00

Remove separator from menu title

This commit is contained in:
aclist 2022-05-29 13:57:48 +09:00 committed by GitHub
parent cfadfb627e
commit 905c98c406
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -187,7 +187,7 @@ set_mode(){
main_menu(){
while true; do
set_mode
sel=$(zenity --width=1280 --height=800 --list --title="DZGUI" --text="DZGUI $version $separator Mode: $mode $separator Fav: (not implemented)" --cancel-label="Exit" --ok-label="Select" --column="Select launch option" "${items[@]}" 2>/dev/null)
sel=$(zenity --width=1280 --height=800 --list --title="DZGUI" --text="DZGUI $version" --cancel-label="Exit" --ok-label="Select" --column="Select launch option" "${items[@]}" 2>/dev/null)
if [[ $? -eq 1 ]]; then
exit
elif [[ -z $sel ]]; then