if zenity --question --title=:"$gui_title" --width=$gui_width --text="This installer will add a desktop entry for the TDP manager's GUI. Meaning you will be able to launch it from your application menu like any other software.\n\nDo you wish to proceed?"; then
if zenity --question --title="$gui_title" --width=$gui_width --text="This script collection does not include icons. Do you have your own icon (.png or .svg) that should be used?\nIf you have, answer yes, then select it.\n\nIf unsure, answer no."; then
icon_path=$(zenity --file-selection)
fi
if ! [ -z $icon_path ]; then
file_content="${file_content}Icon=${icon_path}"
finish_message="${finish_message}And ${icon_path} was used as its icon."