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
|
|
|
|
2020-01-28 18:01:26 +01:00
|
|
|
### custom emoji
|
2023-10-31 19:54:42 +01:00
|
|
|
|
2020-01-28 18:01:26 +01:00
|
|
|
[pleroma docs - custom emoji](https://docs-develop.pleroma.social/backend/configuration/custom_emoji/#custom-emoji)
|
|
|
|
|
|
|
|
includes also emojis from:
|
2023-10-31 19:54:42 +01:00
|
|
|
|
|
|
|
- <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>
|
|
|
|
- mothcharm - <https://mothcharm.carrd.co/#emoji>
|
|
|
|
- pride flag heart - <https://ko-fi.com/s/9c742fd6bb>
|
|
|
|
- portable game console - <https://dzuk.zone/emoji>
|
|
|
|
- game controllers - <https://dzuk.zone/emoji>
|
|
|
|
- uwufetch - <https://github.com/TheDarkBug/uwufetch/>
|
2023-10-23 00:18:11 +02:00
|
|
|
- blobfox_extra - @airis@envs.net
|
2023-10-31 19:54:42 +01:00
|
|
|
- konqi - <https://community.kde.org/Promo/Material/Mascots>
|
2020-01-28 18:01:26 +01:00
|
|
|
|
2020-01-28 19:01:42 +01:00
|
|
|
#### notice
|
2020-01-28 18:01:26 +01:00
|
|
|
|
2020-01-29 09:44:51 +01:00
|
|
|
please consider adding emojis alphabetical to `emoji.txt`!
|
2020-01-28 18:01:26 +01:00
|
|
|
|
|
|
|
example:
|
2023-10-31 19:54:42 +01:00
|
|
|
|
2020-01-28 18:01:26 +01:00
|
|
|
```
|
|
|
|
foo, /emoji/custom/foo.png, Tag1,Tag2
|
|
|
|
bla, /emoji/custom/bla.png
|
|
|
|
```
|
2020-01-28 19:01:42 +01:00
|
|
|
|
2020-01-29 09:44:51 +01:00
|
|
|
#### add `emoji.txt` to a new pack
|
2023-10-31 19:54:42 +01:00
|
|
|
|
|
|
|
```sh
|
2020-01-28 19:01:42 +01:00
|
|
|
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
|
2020-01-28 19:01:42 +01:00
|
|
|
```
|
2023-10-31 19:54:42 +01:00
|
|
|
|