// +build darwinpackagebackgroundimport("os/exec""strconv")// Set calls feh to set the backgroundfuncSet(pathstring)error{err:=exec.Command("osascript","-e",`tell application "System Events" to tell every desktop to set picture to `+strconv.Quote(path)).Run()returnerr}