!
! In general, configurations live under the ~/.zeb_configs and dconfig
! directories, so set up to use those.
!
if (getenv ("ZEB_CONFIGS") <> "UNDEFINED")
        set ConfigDir getenv("ZEB_CONFIGS")
        set ConfigPath concat(ConfigDir,",dconfig")
else
        set home getenv("HOME")
        if (home <> "UNDEFINED")
                set ConfigDir concat(home, "/.zeb_configs")
                set ConfigPath concat(ConfigDir,",dconfig")
        else
                set ConfigDir "dconfig"
        endif
endif

!
! What do we run by default when asked to start a display window?
!
set default_exec "gp"
set default_arg1 "gp.init"
set gp_exec default_exec

!
! Generic linked PD to display one window zoomed.
!
config zoom 1
	window 'humungo' 5 5 1100 850 #gp_exec #init_file
		buttonmap 'big'
		linkpd 1
	endwindow
endconfig

!
! An empty config just to clear out the screen.
!
config empty
	widget 'iconbar' 1070 5 70 460
endconfig




