osu-backgrounds: 2025-01-01 -> 2025-04-01

It's that time of year again.
This commit is contained in:
Donovan Glover 2025-04-03 18:07:20 -04:00
parent 5f55ae956e
commit d3b88f4754
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 11 additions and 4 deletions

View File

@ -225,8 +225,8 @@ in
#!/usr/bin/env fish #!/usr/bin/env fish
feh --bg-fill \ feh --bg-fill \
(random choice (fd . ${osu-backgrounds}/2025-01-01-Midnight-Moment-Art-Contest-All-Entries --follow -e jpg -e png)) \ (random choice (fd . ${osu-backgrounds}/2025-04-01-Springtime-Showdown-Art-Contest-All-Entries --follow -e jpg -e png)) \
(random choice (fd . ${osu-backgrounds}/2025-01-01-Midnight-Moment-Art-Contest-All-Entries --follow -e jpg -e png)) (random choice (fd . ${osu-backgrounds}/2025-04-01-Springtime-Showdown-Art-Contest-All-Entries --follow -e jpg -e png))
''; '';
}; };

View File

@ -321,7 +321,7 @@ in
#!/usr/bin/env fish #!/usr/bin/env fish
for monitor in (hyprctl monitors -j | jq -r '.[].name') for monitor in (hyprctl monitors -j | jq -r '.[].name')
~/.config/${setBackgroundScript} "$monitor" "$(random choice $(fd . ${osu-backgrounds}/2025-01-01-Midnight-Moment-Art-Contest-All-Entries --follow -e jpg -e png))" ~/.config/${setBackgroundScript} "$monitor" "$(random choice $(fd . ${osu-backgrounds}/2025-04-01-Springtime-Showdown-Art-Contest-All-Entries --follow -e jpg -e png))"
end end
''; '';
}; };

View File

@ -6,7 +6,7 @@
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "osu-backgrounds"; pname = "osu-backgrounds";
version = "2025-01-01"; version = "2025-04-01";
srcs = [ srcs = [
(fetchzip { (fetchzip {
@ -218,6 +218,13 @@ stdenvNoCC.mkDerivation {
hash = "sha256-Tx550sw690WK3SVAsl+cjLb7Qrbrn8laaqjZMLU3efc="; hash = "sha256-Tx550sw690WK3SVAsl+cjLb7Qrbrn8laaqjZMLU3efc=";
stripRoot = false; stripRoot = false;
}) })
(fetchzip {
name = "2025-04-01 Springtime Showdown Art Contest All Entries";
url = "https://assets.ppy.sh/contests/242/SpringtimeShowdownFanartSubmissions.zip";
hash = "sha256-Jrkwi68iZd1R9NoIHjUz+rArICG+icr/cJZerl/t3Ck=";
stripRoot = false;
})
]; ];
sourceRoot = "."; sourceRoot = ".";