├── .editorconfig ├── .gitattributes ├── Simple Dark.alfredappearance ├── Simple Light.alfredappearance ├── license ├── readme.md ├── screenshot-dark.png └── screenshot-light.png /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /Simple Dark.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 10, 5 | "subtext" : { 6 | "size" : 11, 7 | "colorSelected" : "#6E7073FF", 8 | "font" : "System Light", 9 | "color" : "#6E7073E5" 10 | }, 11 | "shortcut" : { 12 | "size" : 13, 13 | "colorSelected" : "#6E7073FF", 14 | "font" : "System Light", 15 | "color" : "#6E7073FF" 16 | }, 17 | "backgroundSelected" : "#FDFCFF10", 18 | "text" : { 19 | "size" : 22, 20 | "colorSelected" : "#E1E1E2FF", 21 | "font" : "System Light", 22 | "color" : "#A8A8ABFF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "roundness" : 8, 26 | "paddingVertical" : 8, 27 | "iconSize" : 46 28 | }, 29 | "search" : { 30 | "backgroundSelected" : "#C9C9C91C", 31 | "paddingHorizontal" : 8, 32 | "spacing" : 10, 33 | "text" : { 34 | "size" : 36, 35 | "colorSelected" : "#576266FF", 36 | "font" : "System Light", 37 | "color" : "#E1E1E2FF" 38 | }, 39 | "background" : "#FEFFFE00", 40 | "roundness" : 0, 41 | "paddingVertical" : 2 42 | }, 43 | "window" : { 44 | "color" : "#111113CC", 45 | "paddingHorizontal" : 10, 46 | "width" : 620, 47 | "borderPadding" : 0, 48 | "borderColor" : "#FEFFFF00", 49 | "blur" : 0, 50 | "roundness" : 6, 51 | "paddingVertical" : 10 52 | }, 53 | "credit" : "Sindre Sorhus", 54 | "visualEffectMode" : 2, 55 | "separator" : { 56 | "color" : "#00000005", 57 | "thickness" : 1 58 | }, 59 | "scrollbar" : { 60 | "color" : "#53535761", 61 | "thickness" : 2 62 | }, 63 | "name" : "Simple Dark" 64 | } 65 | } -------------------------------------------------------------------------------- /Simple Light.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 10, 5 | "subtext" : { 6 | "size" : 11, 7 | "colorSelected" : "#7B7B7BFF", 8 | "font" : "System Light", 9 | "color" : "#7B7B7BCB" 10 | }, 11 | "shortcut" : { 12 | "size" : 13, 13 | "colorSelected" : "#B9B9B9FF", 14 | "font" : "System Light", 15 | "color" : "#7B7B7B98" 16 | }, 17 | "backgroundSelected" : "#00000018", 18 | "text" : { 19 | "size" : 22, 20 | "colorSelected" : "#252525FF", 21 | "font" : "System Light", 22 | "color" : "#7B7B7BFF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "roundness" : 8, 26 | "paddingVertical" : 8, 27 | "iconSize" : 46 28 | }, 29 | "search" : { 30 | "backgroundSelected" : "#CACACAFF", 31 | "paddingHorizontal" : 8, 32 | "spacing" : 10, 33 | "text" : { 34 | "size" : 36, 35 | "colorSelected" : "#576266FF", 36 | "font" : "System Light", 37 | "color" : "#252525FF" 38 | }, 39 | "background" : "#FEFFFE00", 40 | "roundness" : 0, 41 | "paddingVertical" : 2 42 | }, 43 | "window" : { 44 | "color" : "#FBFEFFCB", 45 | "paddingHorizontal" : 10, 46 | "width" : 620, 47 | "borderPadding" : 0, 48 | "borderColor" : "#FEFFFF00", 49 | "blur" : 0, 50 | "roundness" : 6, 51 | "paddingVertical" : 10 52 | }, 53 | "credit" : "Sindre Sorhus", 54 | "visualEffectMode" : 1, 55 | "separator" : { 56 | "color" : "#00000005", 57 | "thickness" : 1 58 | }, 59 | "scrollbar" : { 60 | "color" : "#B9B9B93F", 61 | "thickness" : 2 62 | }, 63 | "name" : "Simple Light" 64 | } 65 | } -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Sindre Sorhus (https://sindresorhus.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # alfred-simple 2 | 3 | > Simple theme for [Alfred](https://www.alfredapp.com) 4 | 5 | 6 | 7 | 8 | ## Install 9 | 10 | - [Dark theme](https://www.alfredapp.com/extras/theme/p0sqEZNzT0/) 11 | - [Light theme](https://www.alfredapp.com/extras/theme/wYHL5VH6EE/) 12 | 13 | *You need the [Powerpack](https://www.alfredapp.com/powerpack/) for custom themes.* 14 | 15 | Also, you can easily install both or either theme with [homebrew-alfred](https://github.com/danielbayley/homebrew-alfred): 16 | 17 | ```sh 18 | brew tap danielbayley/alfred 19 | 20 | brew install --cask alfred-theme-simple-dark 21 | 22 | # or 23 | brew install --cask alfred-theme-simple-light 24 | 25 | # or both 26 | brew install --cask alfred-theme-simple 27 | ``` 28 | 29 | ## Related 30 | 31 | - [alfred-emoj](https://github.com/sindresorhus/alfred-emoj) - Find relevant emoji from text 32 | - [alfred-npms](https://github.com/sindresorhus/alfred-npms) - Search for npm packages with npms.io 33 | -------------------------------------------------------------------------------- /screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfred-simple/0f0b76112276966185c81480effeb4b83b985a6b/screenshot-dark.png -------------------------------------------------------------------------------- /screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfred-simple/0f0b76112276966185c81480effeb4b83b985a6b/screenshot-light.png --------------------------------------------------------------------------------