8000 GitHub - qchenme/kaomoji: Kaomojis collection website
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

qchenme/kaomoji

Repository files navigation

(ノ ´ ヮ`)ノ*: ・゚ Kaomoji cheatsheet

Developed using Next.js

Deployed using Vercel

Start locally

npm run dev
# or
yarn dev

Graphql API

Playground

Production playgroud

Development playgorund

Have fun

Configure random kaomoji terminal greeting for fish

Screen Shot 2021-04-13 at 21 40 02

vim ~/.config/fish/config.fish

Copy the following to your fish config:

function random_kaomoji
  set kaomoji_raw (curl -s --header "Content-Type: application/json" \
    --request POST \
    --data '{ "query": "{ randomKaomoji }" }'  \
    https://hellokaomoji.com/api/graphql)

  set -x -g kaomoji (echo $kaomoji_raw | sed -e 's/.*{"data":{"randomKaomoji":"\(.*\)"}}.*/\1/')

  echo "Hello!!" $kaomoji
end

function fish_greeting
  random_kaomoji
end

About

Kaomojis collection website

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0