diff options
| author | eric.marin <maarin.eric@gmail.com> | 2024-12-26 14:33:06 +0100 |
|---|---|---|
| committer | eric.marin <maarin.eric@gmail.com> | 2024-12-30 21:07:42 +0100 |
| commit | 4de5a217c25fe83bb54063f8d842b78c9e6d7fb3 (patch) | |
| tree | 0460bc0600492324f111524dfdff1ef85c9fbf8e /scripts/set_background | |
| parent | ee2b01a3fff043a8b977385227c2659bbcf2e59a (diff) | |
| download | dotfiles-4de5a217c25fe83bb54063f8d842b78c9e6d7fb3.tar.gz dotfiles-4de5a217c25fe83bb54063f8d842b78c9e6d7fb3.zip | |
wallust
Diffstat (limited to '')
| -rwxr-xr-x | scripts/set_background | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/set_background b/scripts/set_background new file mode 100755 index 0000000..41522a0 --- /dev/null +++ b/scripts/set_background @@ -0,0 +1,16 @@ +#!/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 "wipe" +set -x SWWW_TRANSITION_FPS 60 +set -U img $argv[1] + +niri msg action do-screen-transition +swww img $img +wallust run $img +makoctl reload + |
