envs.net.pleroma-custom/README.md
2023-10-19 18:05:01 -07:00

36 lines
1.1 KiB
Markdown

## 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:
- https://fedi.absturztau.be/emoji-packs/index.html
- senko and gyate_th - https://udongein.xyz/emoji-packs/
- blobfox - https://www.feuerfuchs.dev/projects/blobfox-emojis/
- bunhd - https://www.feuerfuchs.dev/projects/bunhd-emojis/
- neocat - https://volpeon.ink/projects/emojis/neocat/
- neofox - https://volpeon.ink/projects/emojis/neofox/
- blobhaj - https://heatherhorns.com/emoji/
- capybaras - https://www.patreon.com/posts/capybaras-74597806
#### 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
```
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
```