about summary refs log tree commit diff stats
path: root/arc/.traces/find-substring-no-match
Commit message (Collapse)AuthorAgeFilesLines
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+394
I've tried to update the Readme, but there are at least a couple of issues.
^
1
2
3
4
5
6
7
8
9
10
11
12
13

                  

                








                                                        
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
}