From a35bd705363576120e780c06bae587ac61fedbc1 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 10 Jul 2024 15:01:11 -0500 Subject: [PATCH] Revert "refactor(hm/price): better handle swww wallpaper failures" This reverts commit 7dab6acb9376c81a8968f97f5f5ec54241b6bfc4. --- users/price/home.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/users/price/home.nix b/users/price/home.nix index 4ceb96d7..18a25743 100644 --- a/users/price/home.nix +++ b/users/price/home.nix @@ -521,10 +521,10 @@ in let wallpaper-dir = "${dotsDir}/.local/share/wallpapers"; in - pkgs.writeShellScript "swww-init-wallpapers" '' - "${pkgs.swww}/bin/swww img -t random ${wallpaper-dir}/Nebula.jpg" || true - "${pkgs.swww}/bin/swww img -t wipe --transition-angle 40 -o eDP-1 ${wallpaper-dir}/Autumn-Leaves.jpg" || true - ''; + [ + "${pkgs.swww}/bin/swww img -t random ${wallpaper-dir}/Nebula.jpg" + "${pkgs.swww}/bin/swww img -t wipe --transition-angle 40 -o eDP-1 ${wallpaper-dir}/Autumn-Leaves.jpg" + ]; }; Install.WantedBy = [ "swww-daemon.service" ]; Unit = {