mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "e4218a135ad4fd938171277187b42687331a4f5b" and "deb1bc8a5e21bc2b05774a5a5d0b259867595e75" have entirely different histories.
e4218a135a
...
deb1bc8a5e
2
Makefile
2
Makefile
|
@ -9,14 +9,12 @@ install:
|
|||
@install -v -d "$(BINDIR)/" && install -m 0755 -v hilbish "$(BINDIR)/hilbish"
|
||||
@mkdir -p "$(LIBDIR)"
|
||||
@cp libs preload.lua .hilbishrc.lua "$(LIBDIR)" -r
|
||||
@echo /usr/bin/hilbish >> /etc/shells
|
||||
@echo "Hilbish Installed"
|
||||
|
||||
uninstall:
|
||||
@rm -vrf \
|
||||
"$(BINDIR)/hilbish" \
|
||||
"$(LIBDIR)"
|
||||
@sed '/\/usr\/bin\/hilbish/d' /etc/shells
|
||||
@echo "Hilbish Uninstalled"
|
||||
|
||||
clean:
|
||||
|
|
2
main.go
2
main.go
|
@ -59,14 +59,12 @@ func main() {
|
|||
}
|
||||
|
||||
homedir, _ := os.UserHomeDir()
|
||||
if _, err := os.Stat(homedir + "/.hilbishrc.lua"); os.IsNotExist(err) {
|
||||
err = os.WriteFile(homedir + "/.hilbishrc.lua", input, 0644)
|
||||
if err != nil {
|
||||
fmt.Println("Error creating config file")
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
HandleSignals()
|
||||
LuaInit()
|
||||
|
|
Loading…
Reference in New Issue