aboutsummaryrefslogtreecommitdiff
path: root/scripts/set_background
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/set_background')
-rwxr-xr-xscripts/set_background19
1 files changed, 8 insertions, 11 deletions
diff --git a/scripts/set_background b/scripts/set_background
index 9a29ffa..be75486 100755
--- a/scripts/set_background
+++ b/scripts/set_background
@@ -1,21 +1,18 @@
#!/usr/bin/fish
-
if test (count $argv) -lt 1; or not test -f $argv[1]
echo "Usage: $(status filename) <img>"
exit 1
end
-set -x SWWW_TRANSITION "any"
-set -x SWWW_TRANSITION_FPS 60
-set -x SWWW_TRANSITION_DURATION 1.5
-
-niri msg action do-screen-transition
-wallust run $argv[1]; and begin
- set -U img $argv[1]
- swww img $argv[1]
+wallust run $argv[1] -Ts; and begin
+ set -U IMG $argv[1]
+ echo "IMG=$IMG" > ~/.config/scripts/IMG.env
+ niri msg action do-screen-transition
+ wallust -q run $IMG
+ systemctl --user restart swaybg.service
makoctl reload
- notify-send -i $img "Wallust" "Changed wallpaper and palette."
+ notify-send -i $IMG "Wallust" "Changed wallpaper and palette."
end; or begin
- notify-send -u critical "Wallust" "Failed to change palette"
+ notify-send -i $argv[1] -u critical "Wallust" "Failed to change palette"
end;