diff --git a/README.md b/README.md index 3132b89..71289fe 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,9 @@ F imgs/StarOpenSource_Transparent.png -> StarOpenSource logo, transparent D imgs/profiledecorations -> Profile Decorations for sos!sky S imgs/profiledecorations/d60532.png -> "#d60532" profile decoration S imgs/profiledecorations/d60532.xcf -> "#d60532" profile decoration (source file) +D imgs/emotes/ -> Various emotes we at StarOpenSource like to use +D imgs/emotes/neocat/ -> Neocats! Made by Volpeon, see https://volpeon.ink/emojis/neocat/ +D imgs/emotes/neofox/ -> Neofoxes! Made by Volpeon, see https://volpeon.ink/emojis/neofox/ D test/ -> Used for unit tests requiring files to be downloaded off the internet D test/core/ -> Test files for the CORE Framework F test/core/erm-text -> A text file used for verifying that the 'erm' module can process text data. diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..17c8b1e --- /dev/null +++ b/update.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +echo ":: Removing files" +rm -rf "imgs/emotes/neofox" "imgs/emotes/neocat" + +echo ":: Creating directories" +mkdir -p "imgs/emotes/neofox" "imgs/emotes/neocat" +( + cd "imgs/emotes/neofox" + wget "https://volpeon.ink/emojis/neofox/neofox.zip" -O "neofox.zip" + unzip neofox.zip +) +( + cd "imgs/emotes/neocat" + wget "https://volpeon.ink/emojis/neocat/neocat.zip" -O "neocat.zip" + unzip neocat.zip +)