diff --git a/James' Things/foundry patches/loginmusic.sh b/James' Things/foundry patches/loginmusic.sh new file mode 100644 index 0000000..765dd7b --- /dev/null +++ b/James' Things/foundry patches/loginmusic.sh @@ -0,0 +1,17 @@ +# Add Music to the login screen + +# Videoid of the Youtube video you want to play +videoid="ZjQZxqTipHM" + +# The actual embed code that embeds the video. +# This is only in case you want to change some parameters. +# Don't forget to add the $videoid near the embed! +# (In case you still want to use that, but I highly doubt that) +iframe="" + +# The final string. +Video="
$iframe
" + +# Inject that bad boy into the foundry thing. Might break in future updates (May only need the line changed) +sed -i -e "69i $Video" /home/foundry/resources/app/templates/setup/join-game.html +# Nice diff --git a/James' Things/foundry patches/loginpage.sh b/James' Things/foundry patches/loginpagecss.sh similarity index 82% rename from James' Things/foundry patches/loginpage.sh rename to James' Things/foundry patches/loginpagecss.sh index 2aacff1..aa22a01 100644 --- a/James' Things/foundry patches/loginpage.sh +++ b/James' Things/foundry patches/loginpagecss.sh @@ -11,11 +11,13 @@ sed -i -e 's+url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1H sed -i -e 's+rgb(150, 12, 16)+rgb(0, 150, 136)+g' ./foundry_login.css sed -i -e 's+rgb(228, 9, 19)+rgb(0, 188, 170)+g' ./foundry_login.css -# Make the Width responsive -sed -i -e 's+width: 400px !important;+width: 90% !important;+g' ./foundry_login.css +# Make the Width responsive and add a sick blur effect +sed -i -e 's+width: 400px !important;+width: 90% !important;backdrop-filter: blur(7px) !important;+g' ./foundry_login.css # Append to the Foundry Style.css cat ./foundry_login.css >> /home/foundry/resources/app/public/css/style.css +rm ./foundry_login.css + # Note: this is how dockerized Foundry likes to handle the sed... or linux... whatever it's a note, don't read into it #sed -i -e 's+A+B+g' ./foundry_login.css