From b6dbe9ac5d57d27d5620445f20cad2c353089f86 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Mon, 1 Apr 2024 19:51:31 +0200 Subject: [PATCH] kde: use provided `verboseEcho` function (#316) Follows: bad1af63ff330b397b87fc243d479701417740da --- modules/kde/hm.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/kde/hm.nix b/modules/kde/hm.nix index 4d851688c..120f27374 100644 --- a/modules/kde/hm.nix +++ b/modules/kde/hm.nix @@ -255,10 +255,16 @@ in { if wallpaper_image="$(global_path plasma-apply-wallpaperimage)"; then "$wallpaper_image" "${themePackage}/share/wallpapers/stylix" + else + verboseEcho \ + "plasma-apply-wallpaperimage: command not found" fi if look_and_feel="$(global_path plasma-apply-lookandfeel)"; then "$look_and_feel" --apply stylix + else + verboseEcho \ + "Skipping plasma-apply-lookandfeel: command not found" fi ''; };