initial commit

This commit is contained in:
piotr
2021-05-19 00:53:51 +02:00
parent aa7a484f2b
commit 36d95ecbdc
7 changed files with 1810 additions and 0 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
get:
go get github.com/gotk3/gotk3
go get github.com/gotk3/gotk3/gdk
go get github.com/gotk3/gotk3/glib
go get github.com/dlasky/gotk3-layershell/layershell
go get github.com/joshuarubin/go-sway
go get github.com/allan-simon/go-singleinstance
build:
go build -o bin/nwg-menu *.go
install:
mkdir -p /usr/share/nwg-menu
cp -r desktop-directories /usr/share/nwg-menu
cp menu-start.css /usr/share/nwg-menu
cp bin/nwg-menu /usr/bin
uninstall:
rm /usr/bin/nwg-menu
run:
go run *.go