#!/bin/sh

command_exists "gtkdialog" || die 3 "gtkdialog (https://github.com/puppylinux-woof-CE/gtkdialog) is required for the gui extension\n"

tab_space="$(printf '\t')"

load_interface gui || die 2 "The gui interface addon could not be found\n"

print_help_gui () {
    printf "%s\n" "Use a gui instead of tui as a menu"
}

on_clean_up_gui(){
    rm -f "${session_temp_dir}/data.gui"
}
