summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index 2fb0554..bac17be 100644
--- a/structs.go
+++ b/structs.go
@@ -12,9 +12,11 @@ var me *autoType
// this app's variables
type autoType struct {
- pp *arg.Parser // go-arg preprocessor
- myGui *gui.Node // the gui toolkit handle
- dd *gui.Node // the drives dropdown list
- parted *gui.Node // the current drive to run parted on
- currentDev string // the current dev entry to work on
+ pp *arg.Parser // go-arg preprocessor
+ myGui *gui.Node // the gui toolkit handle
+ dd *gui.Node // the drives dropdown list
+ parted *gui.Node // the current drive to run parted on
+ currentDev *Block // the current dev entry to work on
+ pb *Blocks // the block dev protobuf
+ driveInfoBox *gui.Node // displays the drive info
}