diff options
| author | Jeff Carr <[email protected]> | 2024-01-06 05:24:11 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-06 05:24:11 -0600 |
| commit | 4529b473dc12d8a4d1b49c9ee1ba89897f86d616 (patch) | |
| tree | 20cdc5bd7c644e3fb8d7afa8e7b872b1f2082684 /linuxstatus/new.go | |
| parent | a808bb55189a44d0c3b2965805c14644f8102cca (diff) | |
add LinuxStatus()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'linuxstatus/new.go')
| -rw-r--r-- | linuxstatus/new.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/linuxstatus/new.go b/linuxstatus/new.go new file mode 100644 index 0000000..0ce504c --- /dev/null +++ b/linuxstatus/new.go @@ -0,0 +1,17 @@ +// This creates a simple hello world window +package linuxstatus + +import ( +) + +func New() *LinuxStatus { + me = &LinuxStatus { + hidden: true, + ready: false, + } + + me.init = true + return me + + // me.window = gadgets.NewBasicWindow(me.myGui, "Linux OS Details") +} |
