diff options
author | Andinus <andinus@inventati.org> | 2020-03-14 12:28:02 +0530 |
---|---|---|
committer | Andinus <andinus@inventati.org> | 2020-03-14 12:28:02 +0530 |
commit | 79f249d1db5843f2966330ddc75a8c71bb8a9ca0 (patch) | |
tree | f313a1ada163b8d357efa19a47ce3178ed14bfba | |
parent | 4b2099eb3d6aa88332cd8bdb89992ea6e639840f (diff) | |
download | cetus-79f249d1db5843f2966330ddc75a8c71bb8a9ca0.tar.gz |
Add background package & Set function
-rw-r--r-- | pkg/background.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkg/background.go b/pkg/background.go new file mode 100644 index 0000000..44e455c --- /dev/null +++ b/pkg/background.go @@ -0,0 +1,25 @@ +// Copyright (c) 2020, Andinus <andinus@inventati.org> + +// Permission to use, copy, modify, and/or distribute this software for any +// purpose with or without fee is hereby granted, provided that the above +// copyright notice and this permission notice appear in all copies. + +// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +package background + +// 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 +} |