From b3a26007671a28c1a5043cd39947db36dee1394b Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Sun, 23 Jan 2022 17:10:44 -0500 Subject: [PATCH] Restore current wallpaper on quit --- home/bin/wallpaper_review | 1 + 1 file changed, 1 insertion(+) diff --git a/home/bin/wallpaper_review b/home/bin/wallpaper_review index 34d98d7..c62a54c 100755 --- a/home/bin/wallpaper_review +++ b/home/bin/wallpaper_review @@ -70,6 +70,7 @@ paths_preview() { case "$(read_command)" in CMD_QUIT) + feh --bg-scale "$(< "$FILE_WALLPAPER_CURR")" exit 0;; CMD_MOVE_BACK) (( i = i == 0 ? (n - 1) : i - 1));; -- 2.20.1