summary refs log tree commit diff stats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/background/set_darwin.go14
-rw-r--r--pkg/background/set_unix.go (renamed from pkg/background/set.go)2
2 files changed, 16 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
+}
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 (