├── Bang.alfredworkflow ├── LICENSE ├── README.md ├── bang_logo.svg └── screenshots ├── bill_hicks.gif ├── github_code.gif └── lobsters.gif /Bang.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarter/Bang/ee53f6384b32261876c04502581cee14be3d62b2/Bang.alfredworkflow -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | !BANG - An Alfred Workflow 2 | Copyright © 2020 Dorian Karter 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the "Software"), 6 | to deal in the Software without restriction, including without limitation 7 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 | and/or sell copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included 12 | in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 16 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 17 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 18 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 19 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 20 | OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![BANG LOGO](bang_logo.svg) 2 | 3 | A DuckDuckGo !bang auto-completion. 4 | 5 | ## Installation 6 | 7 | Download the .workflow file from this repo and open it in Alfred. 8 | 9 | ## Usage 10 | 11 | Must run `!update` before using - this will download the completion data from 12 | duckduckgo.com 13 | 14 | After getting the completion data you can use the workflow by either typing `!` 15 | into Alfred's search box, or using the system-wide shortcut <Ctrl-!> 16 | 17 | ## Demo 18 | 19 | ![lobsters](screenshots/lobsters.gif) 20 | 21 | ![github code](screenshots/github_code.gif) 22 | 23 | ![bill hicks](screenshots/bill_hicks.gif) 24 | 25 | 26 | ## License 27 | 28 | MIT 29 | 30 | DuckDuckGo name and logo are trademarks of Duck Duck Go, Inc. 31 | -------------------------------------------------------------------------------- /bang_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Untitled 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /screenshots/bill_hicks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarter/Bang/ee53f6384b32261876c04502581cee14be3d62b2/screenshots/bill_hicks.gif -------------------------------------------------------------------------------- /screenshots/github_code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarter/Bang/ee53f6384b32261876c04502581cee14be3d62b2/screenshots/github_code.gif -------------------------------------------------------------------------------- /screenshots/lobsters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarter/Bang/ee53f6384b32261876c04502581cee14be3d62b2/screenshots/lobsters.gif --------------------------------------------------------------------------------