blob: fa95f6f50626bbd211b9b138b17d9e1ecbfe75f0 (
plain) (
tree)
|
|
package background
import "os/exec"
// Set calls feh to set the background
func Set(path string) error {
feh, err := exec.LookPath("feh")
if err != nil {
return err
}
err = exec.Command(feh, "--bg-fill", path).Run()
return err
}
|