From 995dca803c227b1f669b8b44193bf74d90f02e23 Mon Sep 17 00:00:00 2001 From: nin0 Date: Tue, 22 Apr 2025 19:22:32 -0400 Subject: [PATCH] add idiot mode --- src/components/windows/main/SpotifyCard.astro | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/windows/main/SpotifyCard.astro b/src/components/windows/main/SpotifyCard.astro index e3a588f..4dd0201 100644 --- a/src/components/windows/main/SpotifyCard.astro +++ b/src/components/windows/main/SpotifyCard.astro @@ -213,6 +213,14 @@ import HeartIcon from "@assets/svg/heart.svg"; (document.querySelector(".lastfm-link") as HTMLLinkElement).href = track.url; + + if ( + new URLSearchParams(window.location.search).has("iamanidiot") && + (track.artist.includes("Taylor Swift") || + track.name.includes("Taylor Swift")) + ) { + spotifyCardWrapper.style = ""; + } } else { spotifyCardWrapper.style = ""; }