From 5b9e48874a1852d883186dfd6c31dbf6cd78a525 Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Thu, 23 Apr 2026 00:17:32 -0400 Subject: remove .cache/wallpaper stuff --- bin/.local/bin/scripts/theme | 13 ++++--------- bin/.local/bin/scripts/wallpaper.sh | 5 ----- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/bin/.local/bin/scripts/theme b/bin/.local/bin/scripts/theme index f8d1797..7f7c6b0 100755 --- a/bin/.local/bin/scripts/theme +++ b/bin/.local/bin/scripts/theme @@ -70,23 +70,18 @@ function load_wallpaper() { # Command to set wallpaper based on selected mode case "$selected_mode" in "Tiled") - feh --no-fehbg --bg-tile "$selected_wallpaper" - echo "feh --no-fehbg --bg-tile '$selected_wallpaper'" >> ~/.cache/wallpaper + feh --bg-tile "$selected_wallpaper" ;; "Zoom Filled") - feh --no-fehbg --bg-fill "$selected_wallpaper" - echo "feh --no-fehbg --bg-fill '$selected_wallpaper'" >> ~/.cache/wallpaper + feh --bg-fill "$selected_wallpaper" ;; "Centered") - feh --no-fehbg --bg-center "$selected_wallpaper" -B "$bg_color" - echo "feh --no-fehbg --bg-center '$selected_wallpaper'" >> ~/.cache/wallpaper + feh --bg-center "$selected_wallpaper" -B "$bg_color" ;; "Max") - feh --no-fehbg --bg-max "$selected_wallpaper" - echo "feh --no-fehbg --bg-max '$selected_wallpaper'" >> ~/.cache/wallpaper + feh --bg-max "$selected_wallpaper" ;; *) - echo "Invalid option selected." exit 1 ;; esac diff --git a/bin/.local/bin/scripts/wallpaper.sh b/bin/.local/bin/scripts/wallpaper.sh index 052b8c8..e6d799c 100755 --- a/bin/.local/bin/scripts/wallpaper.sh +++ b/bin/.local/bin/scripts/wallpaper.sh @@ -41,22 +41,17 @@ sed -i '/feh/d' $HOME/.cache/wallpaper case "$selected_mode" in "Tiled") feh --bg-tile "$selected_wallpaper" - echo "feh --no-fehbg --bg-tile '$selected_wallpaper'" >> ~/.cache/wallpaper ;; "Zoom Filled") feh --no-fehbg --bg-fill "$selected_wallpaper" - echo "feh --no-fehbg --bg-fill '$selected_wallpaper'" >> ~/.cache/wallpaper ;; "Centered") feh --no-fehbg --bg-center "$selected_wallpaper" - echo "feh --no-fehbg --bg-center '$selected_wallpaper'" >> ~/.cache/wallpaper ;; "Max") feh --no-fehbg --bg-max "$selected_wallpaper" - echo "feh --no-fehbg --bg-max '$selected_wallpaper'" >> ~/.cache/wallpaper ;; *) - echo "Invalid option selected." exit 1 ;; esac -- cgit v1.2.3