blob: 2ead214e4ecaec585a00f6c9698d3434ec20ff4d (
plain) (
tree)
|
|
// +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
}
|