aboutsummaryrefslogtreecommitdiffstats
path: root/src/c_init.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_init.go')
-rw-r--r--src/c_init.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/c_init.go b/src/c_init.go
index f89ce47..e377053 100644
--- a/src/c_init.go
+++ b/src/c_init.go
@@ -138,3 +138,23 @@ func c_load_litems(ldirs *DirsList) *ItemsList {
litems.draw = litems.head
return &litems
}
+
+func c_write_options(dir string) {
+ // TODO: this
+}
+
+func c_get_options(dir string) HardOpts {
+ opts := HardOpts{}
+ file := dir + "/" + CONF_FILE_NAME
+
+ if _, err := os.Stat(file); os.IsNotExist(err) {
+ c_write_options(file)
+ return DEFAULT_OPS
+ }
+ opts, err := c_parse_opts(file)
+ if err != nil {
+ // TODO: this
+ }
+ return opts
+}
+