envs.net.pleroma-custom/README.md

35 lines
975 B
Markdown
Raw Normal View History

2020-01-25 21:34:40 +01:00
## pleroma custom repo
2020-01-26 11:58:15 +01:00
path: `/var/lib/pleroma/`
2020-01-25 22:04:20 +01:00
### custom emoji
[pleroma docs - custom emoji](https://docs-develop.pleroma.social/backend/configuration/custom_emoji/#custom-emoji)
includes also emojis from:
2020-01-25 22:04:20 +01:00
- https://fedi.absturztau.be/emoji-packs/index.html
2020-02-27 12:21:29 +01:00
- senko and gyate_th - https://udongein.xyz/emoji-packs/
2020-01-28 21:44:23 +01:00
- blobfox - https://www.feuerfuchs.dev/projects/blobfox-emojis/
- bunhd - https://www.feuerfuchs.dev/projects/bunhd-emojis/
2023-10-11 09:21:02 +02:00
- neocat - https://volpeon.ink/projects/emojis/neocat/
- neofox - https://volpeon.ink/projects/emojis/neofox/
#### 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
2020-02-27 12:21:29 +01:00
sed -i "/\/emoji.txt/d" emoji.txt
```