envs.net.pleroma-custom/README.md

79 lines
3.1 KiB
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
2023-10-31 19:54:42 +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
2023-12-01 15:03:09 +01:00
- <https://emoji-repo.absturztau.be/>
2023-10-31 19:54:42 +01:00
- 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-12-01 15:03:09 +01:00
- blobfox_extra and misc - various, including @airis@pleroma.envs.net
2024-01-02 04:43:42 +01:00
- neofox-extra - @aris@pleroma.envs.net
2023-10-31 19:54:42 +01:00
- konqi - <https://community.kde.org/Promo/Material/Mascots>
- xenia: <https://meow.social/@rinidisc/111333089243157952>, <https://meow.social/@rinidisc/109791952664927854>, and <https://rinidisc.com/2023/2023.html>
- zero two: <https://archive.org/details/002-emotes/> + unknown
2023-11-01 19:35:38 +01:00
- pig flags: <https://archive.org/details/serbiapig/>
2023-11-02 01:53:58 +01:00
- waluigi blob: <https://www.reddit.com/r/Waluigi/comments/a70m54/i_did_a_cute_waluigi_emoji_for_discord/>
2023-11-03 14:44:48 +01:00
- Pride flags: mostly from WikiMedia Commons.
2023-11-03 17:09:02 +01:00
- openSUS: <https://todon.nl/@schratze/107678159846609667>
2023-12-01 15:03:09 +01:00
- shitty logos: [shitty_logos telegram sticker pack](https://fstik.app/stickerSet/shitty_logos) + various others
- Spy X Family: <https://ko-fi.com/s/44e46f4f3f>
- Vtubers: @enigmatico@mk.absturztau.be
- drgn: <https://volpeon.ink/projects/emojis/drgn/>
2023-12-01 15:46:05 +01:00
- turtle: <https://github.com/TurtleEmotes/Turtles>
2023-12-03 17:10:32 +01:00
- fatcat: <https://ko-fi.com/sunpawbean>
2023-12-03 17:48:12 +01:00
- Smilky Pokemon: <https://ko-fi.com/smilkyshake>
- Umirinart: <https://ko-fi.com/umirinart/>
2023-12-03 18:58:57 +01:00
- Among Us: <https://pidgels.gumroad.com/l/iLmkv>
2023-12-03 19:23:48 +01:00
- Matcha: <https://ko-fi.com/s/f67eddbf93>
2023-12-03 22:05:36 +01:00
- Padoru: various; see `credits.txt` in its directory.
2023-12-03 22:20:24 +01:00
- Gura: curated by @julia@eepy.moe from Discord servers.
2023-12-03 23:09:58 +01:00
- Ferris: <https://dzuk.zone/emoji>
2023-12-04 17:01:20 +01:00
- blobhaj flags: <https://heatherhorns.com/emoji/>
2023-12-04 17:22:51 +01:00
- cats: <https://git.gay/sneexy/fedi-emoji-packs>
2024-01-01 22:36:56 +01:00
- birbs: <https://squawk.social/@EricMalves/111584664139895889>
- blue mushroom: <https://ko-fi.com/s/a1de5de3bd>
2024-01-02 03:41:59 +01:00
- bugsnax: <https://emojis-are-cool.carrd.co/>
- month_year: <https://emojis-are-cool.carrd.co/>
2024-01-02 04:21:11 +01:00
- smiggles: <https://ko-fi.com/smiggles/>
2024-01-02 04:40:49 +01:00
- Shibabo Studio: <https://linktr.ee/shibabo.studio>
2024-01-03 18:21:32 +01:00
- pokeblobs: <https://blobs.gg/>
2024-01-03 18:29:08 +01:00
- llamas: <https://www.deviantart.com/jerikuto>, <https://www.weibo.com/huiro>
#### notice
please consider adding emojis alphabetical to `emoji.txt`!
example:
2023-10-31 19:54:42 +01:00
```
foo, /emoji/custom/foo.png, Tag1,Tag2
bla, /emoji/custom/bla.png
```
#### add `emoji.txt` to a new pack
2023-10-31 19:54:42 +01:00
```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
2020-02-27 12:21:29 +01:00
sed -i "/\/emoji.txt/d" emoji.txt
```
2023-10-31 19:54:42 +01:00