aboutsummaryrefslogtreecommitdiff
path: root/scripts/set_background
blob: 9a29ffa6833069a8e50a7e28fd458a84ee601800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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]
	makoctl reload
	notify-send -i $img "Wallust" "Changed wallpaper and palette."
end; or begin
	notify-send -u critical "Wallust" "Failed to change palette"
end;