## pleroma custom repo
path: `/var/lib/pleroma/`
### custom emoji
[pleroma docs - custom emoji](https://docs-develop.pleroma.social/backend/configuration/custom_emoji/#custom-emoji)
includes also emojis from:
-
- senko and gyate_th -
- blobfox - and
- bunhd -
- neocat -
- neofox -
- blobhaj -
- capybaras -
- mothcharm -
- pride flag heart -
- portable game console -
- game controllers -
- uwufetch -
- blobfox_extra and misc - various, including @airis@pleroma.envs.net
- neofox-extra and neocat_extra - @aris@pleroma.envs.net and @starshine@woem.space
- konqi -
- xenia: , , and
- zero two: + unknown
- waluigi blob:
- Pride flags: mostly from WikiMedia Commons.
- openSUS:
- shitty logos: [shitty_logos telegram sticker pack](https://fstik.app/stickerSet/shitty_logos) + various others
- Spy X Family:
- Vtubers: @enigmatico@mk.absturztau.be
- drgn:
- turtle:
- fatcat:
- Smilky Pokemon:
- Umirinart:
- Among Us:
- Matcha:
- Padoru: various; see `credits.txt` in its directory.
- Gura: curated by @julia@eepy.moe from Discord servers.
- Ferris:
- blobhaj flags:
- cats:
- birbs:
- blue mushroom:
- bugsnax:
- month_year:
- smiggles:
- Shibabo Studio:
- pokeblobs:
- llamas: ,
- gopher:
- froggie: (original source unknown; tell Seirdy if you find it!)
- belly:
- bubblegum:
- celeste hearts:
- Jinx:
- Pochita:
- Neorat:
- Pinkiemme:
- Yingmotes (ying palette):
- Akemi:
- Hatsune Miku:
- Eeveelutions:
- cute_frog:
- RWBY:
- Hollow Knight:
- Gamer:
- Netfish:
- Alpaca:
- Floof:
- Among Us 2:
- OpenMoji Extra: (excludes Unicode emoji)
- Milkshakes:
- Balloons:
- Boomer:
- Pride cricket bats:
- Pride potions:
- Neobread:
- Robomoji: (based on Mutant Standard)
- Chicks:
#### notice
please consider adding emojis alphabetical to `emoji.txt`!
example:
```
foo, /emoji/custom/foo.png, Tag1,Tag2
bla, /emoji/custom/bla.png
```
#### add `emoji.txt` to a new pack
```sh
newpack='MYSTUFF'
cd static/emoji/"$newpack"
for file in $(dir); do printf '%s, /emoji/%s/%s\n' "${file%.*}" "$newpack" "$file" >> tmp.txt ; done
sort -o emoji.txt tmp.txt ; rm tmp.txt
sed -i "/\/emoji.txt/d" emoji.txt
```