summary refs log tree commit diff stats
path: root/pkg/background/background.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/background/background.go')
-rw-r--r--pkg/background/background.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/pkg/background/background.go b/pkg/background/background.go
deleted file mode 100644
index fa95f6f..0000000
--- a/pkg/background/background.go
+++ /dev/null
@@ -1,13 +0,0 @@
-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
-}