python.pkgs.pywal: hardcode path to feh
This commit is contained in:
parent
302d53df2b
commit
3f93d68ebb
@ -9,11 +9,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
sha256 = "1pj30h19ijwhmbm941yzbkgr19q06dhp9492h9nrqw1wfjfdbdic";
|
sha256 = "1pj30h19ijwhmbm941yzbkgr19q06dhp9492h9nrqw1wfjfdbdic";
|
||||||
};
|
};
|
||||||
|
|
||||||
# necessary for imagemagick to be found during tests
|
|
||||||
buildInputs = [ imagemagick ];
|
|
||||||
|
|
||||||
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ imagemagick feh ]}" ];
|
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
mkdir tmp
|
mkdir tmp
|
||||||
HOME=$PWD/tmp
|
HOME=$PWD/tmp
|
||||||
@ -21,10 +16,12 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./convert.patch
|
./convert.patch
|
||||||
|
./feh.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pywal/backends/wal.py --subst-var-by convert "${imagemagick}/bin/convert"
|
substituteInPlace pywal/backends/wal.py --subst-var-by convert "${imagemagick}/bin/convert"
|
||||||
|
substituteInPlace pywal/wallpaper.py --subst-var-by feh "${feh}/bin/feh"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
39
pkgs/development/python-modules/pywal/feh.patch
Normal file
39
pkgs/development/python-modules/pywal/feh.patch
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
commit 99ef6bfc51ee401f6762183f8e323b8306a8ce56
|
||||||
|
Author: Frederik Rietdijk <fridh@fridh.nl>
|
||||||
|
Date: Wed Dec 26 12:54:32 2018 +0100
|
||||||
|
|
||||||
|
nix: hardcode feh
|
||||||
|
|
||||||
|
diff --git a/pywal/wallpaper.py b/pywal/wallpaper.py
|
||||||
|
index ba61e66..6107305 100644
|
||||||
|
--- a/pywal/wallpaper.py
|
||||||
|
+++ b/pywal/wallpaper.py
|
||||||
|
@@ -47,27 +47,7 @@ def xfconf(path, img):
|
||||||
|
|
||||||
|
def set_wm_wallpaper(img):
|
||||||
|
"""Set the wallpaper for non desktop environments."""
|
||||||
|
- if shutil.which("feh"):
|
||||||
|
- util.disown(["feh", "--bg-fill", img])
|
||||||
|
-
|
||||||
|
- elif shutil.which("nitrogen"):
|
||||||
|
- util.disown(["nitrogen", "--set-zoom-fill", img])
|
||||||
|
-
|
||||||
|
- elif shutil.which("bgs"):
|
||||||
|
- util.disown(["bgs", "-z", img])
|
||||||
|
-
|
||||||
|
- elif shutil.which("hsetroot"):
|
||||||
|
- util.disown(["hsetroot", "-fill", img])
|
||||||
|
-
|
||||||
|
- elif shutil.which("habak"):
|
||||||
|
- util.disown(["habak", "-mS", img])
|
||||||
|
-
|
||||||
|
- elif shutil.which("display"):
|
||||||
|
- util.disown(["display", "-backdrop", "-window", "root", img])
|
||||||
|
-
|
||||||
|
- else:
|
||||||
|
- logging.error("No wallpaper setter found.")
|
||||||
|
- return
|
||||||
|
+ return util.disown(["@feh@/bin/feh", "--bg-fill", img])
|
||||||
|
|
||||||
|
|
||||||
|
def set_desktop_wallpaper(desktop, img):
|
Loading…
Reference in New Issue
Block a user