summaryrefslogtreecommitdiff
path: root/linuxstatus/new.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-06 05:24:11 -0600
committerJeff Carr <[email protected]>2024-01-06 05:24:11 -0600
commit3457aefa86ccc9bc6c4eda059e48ebcb8830b410 (patch)
tree525dca4d9ec74d26282521148cd4918d85081e9b /linuxstatus/new.go
parentd2fb88cd584b8e7e60cb6315d9fb8d0d6ceac22f (diff)
add LinuxStatus()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'linuxstatus/new.go')
-rw-r--r--linuxstatus/new.go17
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")
+}