├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .python-version ├── 3F8BD888-F727-48D6-95A1-67269524AEB2.png ├── README.md ├── assets └── joypixels_icons ├── cauldron.sketch ├── cook-new.png ├── demo-images ├── comparison-chart-image-for-forums.png ├── emoji-fridge.png ├── emoji-kitchen-1.png ├── emoji-kitchen-2.png ├── emoji-kitchen-3.png ├── emoji-kitchen-4.png ├── emoji-kitchen-5.png ├── emoji-kitchen-6.png ├── emoji-kitchen-google.png ├── multilingual.png ├── skin-tone-1.png ├── skin-tone-2.png ├── skin-tone-3.png └── skin-tone-4.png ├── emoji-kitchen ├── emoji-kitchen.js └── package.json ├── empty-kitchen.png ├── icon.png ├── imgs.sh ├── impbcopy ├── info.plist ├── search.sh └── set_icon.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.11 2 | -------------------------------------------------------------------------------- /3F8BD888-F727-48D6-95A1-67269524AEB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/3F8BD888-F727-48D6-95A1-67269524AEB2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/README.md -------------------------------------------------------------------------------- /assets/joypixels_icons: -------------------------------------------------------------------------------- 1 | ../joypixels/png/128 -------------------------------------------------------------------------------- /cauldron.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/cauldron.sketch -------------------------------------------------------------------------------- /cook-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/cook-new.png -------------------------------------------------------------------------------- /demo-images/comparison-chart-image-for-forums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/comparison-chart-image-for-forums.png -------------------------------------------------------------------------------- /demo-images/emoji-fridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-fridge.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-1.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-2.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-3.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-4.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-5.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-6.png -------------------------------------------------------------------------------- /demo-images/emoji-kitchen-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/emoji-kitchen-google.png -------------------------------------------------------------------------------- /demo-images/multilingual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/multilingual.png -------------------------------------------------------------------------------- /demo-images/skin-tone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/skin-tone-1.png -------------------------------------------------------------------------------- /demo-images/skin-tone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/skin-tone-2.png -------------------------------------------------------------------------------- /demo-images/skin-tone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/skin-tone-3.png -------------------------------------------------------------------------------- /demo-images/skin-tone-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/demo-images/skin-tone-4.png -------------------------------------------------------------------------------- /emoji-kitchen/emoji-kitchen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/emoji-kitchen/emoji-kitchen.js -------------------------------------------------------------------------------- /emoji-kitchen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/emoji-kitchen/package.json -------------------------------------------------------------------------------- /empty-kitchen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/empty-kitchen.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/icon.png -------------------------------------------------------------------------------- /imgs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | cat alfreditems.json 4 | -------------------------------------------------------------------------------- /impbcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/impbcopy -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/info.plist -------------------------------------------------------------------------------- /search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/search.sh -------------------------------------------------------------------------------- /set_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-fastest-emoji/HEAD/set_icon.sh --------------------------------------------------------------------------------