aboutsummaryrefslogtreecommitdiff
path: root/scripts/set_background
blob: f9465ce994643d4a3a1c9a8f57341a41c083a23e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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 2
set -U img $argv[1]

wallust run $img; and begin
	niri msg action do-screen-transition 
	swww img $img
	makoctl reload
	notify-send -i $img "Wallust" "Changed wallpaper and palette."
end;