Wallpaper: Move instead of copy.
This commit is contained in:
parent
b06b48359d
commit
70b1bab7a3
|
@ -28,7 +28,7 @@ let
|
||||||
if video then
|
if video then
|
||||||
pkgs.runCommandNoCC "wallpaper-video-image" { } ''
|
pkgs.runCommandNoCC "wallpaper-video-image" { } ''
|
||||||
${pkgs.ffmpeg}/bin/ffmpeg -hide_banner -loglevel error -ss 00:00:00 -i ${videoPath} -frames:v 1 -q:v 1 Image.jpg
|
${pkgs.ffmpeg}/bin/ffmpeg -hide_banner -loglevel error -ss 00:00:00 -i ${videoPath} -frames:v 1 -q:v 1 Image.jpg
|
||||||
cp Image.jpg $out
|
mv Image.jpg $out
|
||||||
''
|
''
|
||||||
else
|
else
|
||||||
pkgs.fetchurl { inherit url sha256; };
|
pkgs.fetchurl { inherit url sha256; };
|
||||||
|
|
Loading…
Reference in a new issue