説明なし

poesty 7ccd6260a1 Rename & cleanup 1 年間 前
.gitignore 5b697fa22d Initial commit 4 年 前
LICENSE 5b697fa22d Initial commit 4 年 前
README.md 7ccd6260a1 Rename & cleanup 1 年間 前
emoji-pack.go 3b13276661 Refactor emoji download and parsing logic, now we can download Misskey emoji packs 1 年間 前
emojis.go 3b13276661 Refactor emoji download and parsing logic, now we can download Misskey emoji packs 1 年間 前
fedi-emoji-pack.go 7ccd6260a1 Rename & cleanup 1 年間 前
go.mod 7ccd6260a1 Rename & cleanup 1 年間 前
go.sum 7ccd6260a1 Rename & cleanup 1 年間 前
options.go 9ef6321d90 change default to remove old files 4 年 前
version.go 9ef6321d90 change default to remove old files 4 年 前

README.md

fedi-emoji-pack

This tool allows you to download custom emojis from Mastodon, Pleroma, Misskey etc. and organize them into Emoji Packs that can be used with Pleroma.

Requirements

  • Go (latest version checked: 1.14.3)

Installation

$ go install git.qunn.eu/poesty/fedi-emoji-pack

After installation, an executable named $GOBIN/fedi-emoji-pack will be created. Make sure to add $GOBIN to your $PATH.

Usage

  • By default, an Emoji Pack will be created in the tmp directory.

    $ fedi-emoji-pack example.com
    Success: example.com
    /tmp/example_com
    
  • You can use the -p or --path option to specify a different destination for the Emoji Pack.

    $ fedi-emoji-pack -p. example.com
    Success: example.com
    example_com
    
  • Adding the -s or --split option will create Emoji Packs for each category.

    $ fedi-emoji-pack -sp. example.com
    Success: example.com
    example_com/category1
    example_com/category2
    example_com/category3
    

Help

Usage: fedi-emoji-pack [-hsv] [-p PATH] DOMAIN...

  • -h, --help: Show the help message.
  • -p, --path=PATH: Specify the emoji pack directory [/tmp].
  • -s, --split: Split the emoji pack into categories.
  • -v, --version: Show version information.

License

This tool is licensed under the MIT License. Please refer to the LICENSE for more details.