Add neofox and neocat emoji packs
This commit is contained in:
parent
b99e30b50d
commit
a0be606cad
2 changed files with 20 additions and 0 deletions
|
@ -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.
|
||||
|
|
17
update.sh
Executable file
17
update.sh
Executable file
|
@ -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
|
||||
)
|
Loading…
Reference in a new issue