aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2026-04-23 00:17:32 -0400
committerBardofSprites <[email protected]>2026-04-23 00:17:32 -0400
commit5b9e48874a1852d883186dfd6c31dbf6cd78a525 (patch)
treeab51fc5c7e6f918634bb43b74f6dfa484a544df4 /bin
parent692a7cbb0b85b737029a65909fc5563f1a9d8429 (diff)
remove .cache/wallpaper stuff
Diffstat (limited to 'bin')
-rwxr-xr-xbin/.local/bin/scripts/theme13
-rwxr-xr-xbin/.local/bin/scripts/wallpaper.sh5
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