├── .gitignore ├── LICENSE ├── README.md ├── [Emoji] Activity.alfredsnippets ├── [Emoji] Aliases.alfredsnippets ├── [Emoji] Animals.alfredsnippets ├── [Emoji] Arrows.alfredsnippets ├── [Emoji] Body Parts.alfredsnippets ├── [Emoji] Clocks.alfredsnippets ├── [Emoji] Colored Shapes.alfredsnippets ├── [Emoji] Devices.alfredsnippets ├── [Emoji] Faces.alfredsnippets ├── [Emoji] Flags.alfredsnippets ├── [Emoji] Food and Drink.alfredsnippets ├── [Emoji] Forms and Validation.alfredsnippets ├── [Emoji] Games.alfredsnippets ├── [Emoji] Git.alfredsnippets ├── [Emoji] Japanese Symbols.alfredsnippets ├── [Emoji] Math and Punctuation.alfredsnippets ├── [Emoji] Money.alfredsnippets ├── [Emoji] Musical Instruments.alfredsnippets ├── [Emoji] Objects.alfredsnippets ├── [Emoji] People.alfredsnippets ├── [Emoji] Plants.alfredsnippets ├── [Emoji] Religion and Astrology.alfredsnippets ├── [Emoji] Symbols.alfredsnippets ├── [Emoji] Travel and Places.alfredsnippets ├── [Emoji] Weather.alfredsnippets └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | ## Project-specific files and folders ######################################### 2 | 3 | 4 | ## Package Management ######################################################### 5 | 6 | /node_modules 7 | /jspm_packages 8 | /bower_components 9 | .npm 10 | .yarn-integrity 11 | 12 | 13 | ## Code Editors ############################################################### 14 | 15 | # Sublime Text 16 | *.tmlanguage.cache 17 | *.tmPreferences.cache 18 | *.stTheme.cache 19 | *.sublime-workspace 20 | *.sublime-project 21 | 22 | # VS Code 23 | .vscode/* 24 | !.vscode/settings.json 25 | !.vscode/tasks.json 26 | !.vscode/launch.json 27 | !.vscode/extensions.json 28 | 29 | # WebStorm/IntelliJ 30 | /.idea 31 | modules.xml 32 | *.ipr 33 | *.iml 34 | 35 | # Misc 36 | *.project 37 | *.settings 38 | *.tmproj 39 | *.esproj 40 | *.expressostorage 41 | *.orig 42 | .eslintcache 43 | _notes 44 | codekit-config.json 45 | dwsync.xml 46 | 47 | 48 | ## Compiled source ############################################################ 49 | 50 | *.com 51 | *.class 52 | *.dll 53 | *.exe 54 | *.o 55 | *.so 56 | 57 | 58 | ## Logs and databases ######################################################### 59 | 60 | *.log 61 | *.sql 62 | *.sqlite 63 | log/*.log 64 | logs 65 | db/*.sqlite3 66 | npm-debug.log* 67 | yarn-debug.log* 68 | yarn-error.log* 69 | 70 | 71 | ## Packages (better to unpack these files and commit the raw source) ########## 72 | 73 | *.7z 74 | *.dmg 75 | *.gz 76 | *.iso 77 | *.jar 78 | *.rar 79 | *.tar 80 | *.zip 81 | 82 | 83 | ## Generic files to ignore #################################################### 84 | 85 | *~ 86 | *.DS_Store 87 | ._* 88 | *.lock 89 | *.out 90 | *.pyc 91 | *.swp 92 | *.sw[nop] 93 | .AppleDouble 94 | .bundle 95 | .byebug_history 96 | .com.apple.timemachine.donotpresent 97 | .DocumentRevisions-V100 98 | .env 99 | .env.* 100 | .fseventsd 101 | .LSOverride 102 | .Spotlight-V100 103 | .TemporaryItems 104 | .Trashes 105 | .VolumeIcon.icns 106 | $RECYCLE.BIN/ 107 | ehthumbs.db 108 | ehthumbs_vista.db 109 | Desktop.ini 110 | tags 111 | !tags/ 112 | tmp/**/* 113 | !tmp/cache/.keep 114 | Thumbs.db 115 | rerun.txt 116 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Eric Bailey 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Alfred Emoji Snippets 2 | 3 | There are a lot of emoji out there. [Alfred](https://www.alfredapp.com/) is cool. 4 | 5 | This repo stores Alfred text snippets for emoji, organization and names informed via [Emojipedia](https://emojipedia.org/)'s categories. Project heavily inspired by [Joel Califa's Alfred Emoji Pack](http://joelcalifa.com/blog/alfred-emoji-snippet-pack/). 6 | 7 | 8 | ## FAQ 9 | 10 | **Q:** Doesn't `$app` already do this? 11 | 12 | **A:** I like Alfred. 13 | 14 | **Q:** How do I install this? 15 | 16 | **A:** Double-click on each `.alfredsnippets` file you want to add. If Alfred is installed on your computer you will be prompted to import it. 17 | 18 | **Q:** What's up with Aliases? 19 | 20 | **A:** I use 👋 a lot more than 🌊. This is a catch-all category that lets you apply an additional name to emoji. 21 | 22 | **Q:** I don't like `[Emoji]` making these snippets sit at the top of my snippet collections. 23 | 24 | **A:** You can rename them, silly! 25 | 26 | 27 | **Q:** Where is X emoji? 28 | 29 | **A:** I work on this when I have time. 30 | 31 | **Q:** I don't like how you organize things! 32 | 33 | **A:** 🆗 🆒 -------------------------------------------------------------------------------- /[Emoji] Activity.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Activity.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Aliases.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Aliases.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Animals.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Animals.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Arrows.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Arrows.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Body Parts.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Body Parts.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Clocks.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Clocks.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Colored Shapes.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Colored Shapes.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Devices.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Devices.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Faces.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Faces.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Flags.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Flags.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Food and Drink.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Food and Drink.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Forms and Validation.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Forms and Validation.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Games.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Games.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Git.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Git.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Japanese Symbols.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Japanese Symbols.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Math and Punctuation.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Math and Punctuation.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Money.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Money.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Musical Instruments.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Musical Instruments.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Objects.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Objects.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] People.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] People.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Plants.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Plants.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Religion and Astrology.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Religion and Astrology.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Symbols.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Symbols.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Travel and Places.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Travel and Places.alfredsnippets -------------------------------------------------------------------------------- /[Emoji] Weather.alfredsnippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericwbailey/alfred-emoji-snippets/40daac0ed72e56b16e3d941c12b81f550a60a088/[Emoji] Weather.alfredsnippets -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "alfred-emoji-snippets", 3 | "version": "1.5.0", 4 | "description": "Emoji Snippets for Alfred App", 5 | "author": "Eric Bailey", 6 | "keywords": [ 7 | "alfred", 8 | "emoji", 9 | "snippet" 10 | ], 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://ericwbailey@github.com/ericwbailey/alfred-emoji-snippets.git" 14 | }, 15 | "bugs": { 16 | "url": "https://github.com/ericwbailey/alfred-emoji-snippets/issues" 17 | }, 18 | "license": "MIT", 19 | "homepage": "https://github.com/ericwbailey/alfred-emoji-snippets#readme" 20 | } 21 | --------------------------------------------------------------------------------