From fab98bc613ce8e8e3476467cede66759b3bdcb44 Mon Sep 17 00:00:00 2001 From: sammyette Date: Wed, 2 Apr 2025 10:49:25 -0400 Subject: [PATCH] feat: search XDG_DATA_DIRS for hilbish files --- lua.go | 3 ++- main.go | 25 +++++++++++++++++++------ vars_unix.go | 4 +--- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/lua.go b/lua.go index 88fedf8..923fe91 100644 --- a/lua.go +++ b/lua.go @@ -3,6 +3,7 @@ package main import ( "fmt" "os" + "path/filepath" "hilbish/util" "hilbish/golibs/bait" @@ -64,7 +65,7 @@ func luaInit() { err1 := util.DoFile(l, "nature/init.lua") if err1 != nil { - err2 := util.DoFile(l, preloadPath) + err2 := util.DoFile(l, filepath.Join(dataDir, "nature", "init.lua")) if err2 != nil { fmt.Fprintln(os.Stderr, "Missing nature module, some functionality and builtins will be missing.") fmt.Fprintln(os.Stderr, "local error:", err1) diff --git a/main.go b/main.go index 1bddfc4..49b16ad 100644 --- a/main.go +++ b/main.go @@ -42,12 +42,24 @@ var ( ) func main() { + if runtime.GOOS == "linux" { + // dataDir should only be empty on linux to allow XDG_DATA_DIRS searching. + // but since it might be set on some distros (nixos) we should still check if its really is empty. + if dataDir == "" { + searchableDirs := getenv("XDG_DATA_DIRS", "/usr/local/share/:/usr/share/") + for _, path := range strings.Split(searchableDirs, ":") { + _, err := os.Stat(filepath.Join(path, "hilbish", ".hilbishrc.lua")) + if err == nil { + dataDir = filepath.Join(path, "hilbish") + break + } + } + } + } + runner, _ = interp.New() curuser, _ = user.Current() - homedir := curuser.HomeDir confDir, _ = os.UserConfigDir() - preloadPath = strings.Replace(preloadPath, "~", homedir, 1) - sampleConfPath = strings.Replace(sampleConfPath, "~", homedir, 1) // i honestly dont know what directories to use for this switch runtime.GOOS { @@ -141,10 +153,11 @@ func main() { confpath := ".hilbishrc.lua" if err != nil { // If it wasnt found, go to the real sample conf - _, err = os.ReadFile(sampleConfPath) - confpath = sampleConfPath + sampleConfigPath := filepath.Join(dataDir, ".hilbishrc.lua") + _, err = os.ReadFile(sampleConfigPath) + confpath = sampleConfigPath if err != nil { - fmt.Println("could not find .hilbishrc.lua or", sampleConfPath) + fmt.Println("could not find .hilbishrc.lua or", sampleConfigPath) return } } diff --git a/vars_unix.go b/vars_unix.go index f90fa55..6bf47f5 100644 --- a/vars_unix.go +++ b/vars_unix.go @@ -14,8 +14,6 @@ var ( .. hilbish.userDir.config .. '/hilbish/?/init.lua;' .. hilbish.userDir.config .. '/hilbish/?/?.lua;' .. hilbish.userDir.config .. '/hilbish/?.lua'` - dataDir = "/usr/local/share/hilbish" - preloadPath = dataDir + "/nature/init.lua" - sampleConfPath = dataDir + "/.hilbishrc.lua" // Path to default/sample config + dataDir = "" defaultConfDir = "" )