diff --git a/.gitignore b/.gitignore index a59853d..9043088 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ test2/test2 test3/test3 test4/test4 test5/test5 +example-systray/example-systray diff --git a/README.md b/README.md index 370bf3d..1d586d9 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,8 @@ make ![test image](example-table/screenshot.png) ## example-gui ![test image](example-gui/capture.gif) +## example-systray +![test image](example-systray/capture.mp4) # License diff --git a/example-systray/Makefile b/example-systray/Makefile index bd018e3..f113551 100644 --- a/example-systray/Makefile +++ b/example-systray/Makefile @@ -2,5 +2,13 @@ build: go build ./example-systray +init: + apt install libappindicator3-dev + run: go run *.go + +# should update every go dependancy (?) +update: + git pull + go get -v -t -u . diff --git a/example-systray/capture.mp4 b/example-systray/capture.mp4 new file mode 100644 index 0000000..99c716e Binary files /dev/null and b/example-systray/capture.mp4 differ