diff options
author | Andinus <andinus@nand.sh> | 2020-03-24 11:49:57 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-03-24 11:49:57 +0530 |
commit | 522c16f46419ddc19cb07808c53862292b8fd3ba (patch) | |
tree | 86c80b37c26f29f4cda058e242f7b96e3f525ddb | |
parent | 7bf70520a744d5b6b60a805990a82aaa180fb64b (diff) | |
download | cetus-522c16f46419ddc19cb07808c53862292b8fd3ba.tar.gz |
Add darwin support
-rw-r--r-- | build/ci/gitlab-ci.yml | 2 | ||||
-rw-r--r-- | pkg/background/set_darwin.go | 14 | ||||
-rw-r--r-- | pkg/background/set_unix.go (renamed from pkg/background/set.go) | 2 |
3 files changed, 18 insertions, 0 deletions
diff --git a/build/ci/gitlab-ci.yml b/build/ci/gitlab-ci.yml index f6d776e..2a140ea 100644 --- a/build/ci/gitlab-ci.yml +++ b/build/ci/gitlab-ci.yml @@ -18,7 +18,9 @@ compile: - cd $GOPATH/src/$REPO_NAME/cmd/cetus - GOOS=openbsd GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-openbsd-amd64 - GOOS=linux GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-linux-amd64 + - GOOS=darwin GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-darwin-amd64 artifacts: paths: - cetus-openbsd-amd64 - cetus-linux-amd64 + - cetus-darwin-amd64 diff --git a/pkg/background/set_darwin.go b/pkg/background/set_darwin.go new file mode 100644 index 0000000..2ead214 --- /dev/null +++ b/pkg/background/set_darwin.go @@ -0,0 +1,14 @@ +// +build darwin + +package background + +import ( + "os/exec" + "strconv" +) + +// Set calls feh to set the background +func Set(path string) error { + err := exec.Command("osascript", "-e", `tell application "System Events" to tell every desktop to set picture to `+strconv.Quote(path)).Run() + return err +} diff --git a/pkg/background/set.go b/pkg/background/set_unix.go index 0f7333d..cd75ae3 100644 --- a/pkg/background/set.go +++ b/pkg/background/set_unix.go @@ -1,3 +1,5 @@ +// +build linux netbsd openbsd freebsd dragonfly + package background import ( |