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 /pkg/background/set_darwin.go | |
parent | 7bf70520a744d5b6b60a805990a82aaa180fb64b (diff) | |
download | cetus-522c16f46419ddc19cb07808c53862292b8fd3ba.tar.gz |
Add darwin support
Diffstat (limited to 'pkg/background/set_darwin.go')
-rw-r--r-- | pkg/background/set_darwin.go | 14 |
1 files changed, 14 insertions, 0 deletions
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 +} |