mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-04 20:53:24 +00:00
feat: search XDG_DATA_DIRS for hilbish files
This commit is contained in:
parent
7b16cde540
commit
fab98bc613
3
lua.go
3
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)
|
||||
|
25
main.go
25
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
|
||||
}
|
||||
}
|
||||
|
@ -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 = ""
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user