fix: 'Manually' randomize feh wallpapers

The wallpaper folder is now in git and feh will pick any random file in
the folder that it is pointed at, leading to it constantly failing while
trying to set git objects as the wallpaper.

This uses  manual 'fd | shuf | xargs' pipeline for the same purpose.
This commit is contained in:
Vincent Ambo 2017-10-15 20:01:21 +02:00
parent f771c2a643
commit a11aca65a5

View file

@ -69,7 +69,7 @@ in {
shell = pkgs.fish;
packages = with pkgs; [
jetbrains.idea-community pavucontrol spotify xclip tdesktop
rofi rofi-pass alacritty i3lock unstable.firefox-beta-bin
rofi rofi-pass alacritty i3lock unstable.firefox-beta-bin fd
];
};
@ -88,7 +88,8 @@ in {
description = "Randomly set wallpaper via feh";
serviceConfig = {
Type = "oneshot";
ExecStart = "${pkgs.feh}/bin/feh --recursive --randomize --bg-fill %h/wallpapers";
WorkingDirectory = "%h/wallpapers";
ExecStart = "${pkgs.bash}/bin/bash -c '${pkgs.fd}/bin/fd -atf | shuf | head -n1 | ${pkgs.findutils}/bin/xargs ${pkgs.feh}/bin/feh --bg-fill'";
};
};