From d3b88f47547392be0d79bcaead862965d5114110 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 3 Apr 2025 18:07:20 -0400 Subject: [PATCH] osu-backgrounds: 2025-01-01 -> 2025-04-01 It's that time of year again. --- home/dwm.nix | 4 ++-- home/hyprland.nix | 2 +- packages/osu-backgrounds.nix | 9 ++++++++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/home/dwm.nix b/home/dwm.nix index fb371817..7e47e1de 100644 --- a/home/dwm.nix +++ b/home/dwm.nix @@ -225,8 +225,8 @@ in #!/usr/bin/env fish 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-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-04-01-Springtime-Showdown-Art-Contest-All-Entries --follow -e jpg -e png)) ''; }; diff --git a/home/hyprland.nix b/home/hyprland.nix index 3a8ed211..c91d82b2 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -321,7 +321,7 @@ in #!/usr/bin/env fish 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 ''; }; diff --git a/packages/osu-backgrounds.nix b/packages/osu-backgrounds.nix index 931aa5cd..08cf1b82 100644 --- a/packages/osu-backgrounds.nix +++ b/packages/osu-backgrounds.nix @@ -6,7 +6,7 @@ stdenvNoCC.mkDerivation { pname = "osu-backgrounds"; - version = "2025-01-01"; + version = "2025-04-01"; srcs = [ (fetchzip { @@ -218,6 +218,13 @@ stdenvNoCC.mkDerivation { hash = "sha256-Tx550sw690WK3SVAsl+cjLb7Qrbrn8laaqjZMLU3efc="; 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 = ".";