<@U016EM8L91B> Hi, using `magic -noconsole` , is t...
# magic
a
@Tim Edwards Hi, using
magic -noconsole
, is there any command that allow us to enable and disable the GUI in runtime? The idea is to not kill the magic process, just hide the GUI it if we are not interested in see the layout.
t
wm withdraw .layout1
should do it.
Although if you know aheadd of time that you don't need the graphics, it works better to just run
magic -dnull -noconsole
. But the Tk
wm withdraw
command will work if you're already running in GUI mode.
a
That works for hiding of the window, but what about showing it again?
t
wm deiconify .layout1
a
Thats perfect, thanks Tim 🙂