All Projects → kiliankoe → Alfred

kiliankoe / Alfred

Licence: MIT license
Build awesome Alfred workflows with Swift!

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Alfred

alfred-string-operations
Perform string operations to clipboard content
Stars: ✭ 70 (+141.38%)
Mutual labels:  alfred, alfred-workflows
alfred-urban-dictionary
Search Urban Dictionary from Alfred.
Stars: ✭ 53 (+82.76%)
Mutual labels:  alfred, alfred-workflows
alfred-imessage-2fa
iMessage 2FA Workflow for Alfred
Stars: ✭ 71 (+144.83%)
Mutual labels:  alfred, alfred-workflows
alfred-tabs
🔍 Find Chrome/Safari tabs you want easily
Stars: ✭ 13 (-55.17%)
Mutual labels:  alfred, alfred-workflows
Alfred Workflows
Amazing Alfred Workflows
Stars: ✭ 2,163 (+7358.62%)
Mutual labels:  alfred, alfred-workflows
alfred-craftdocs
Note searching for Craft Docs using Alfred
Stars: ✭ 38 (+31.03%)
Mutual labels:  alfred
Themes
Themes I either made or adapted for Alfred, Connected Text, Folding Text, Golden Dict, Obsidian, OmniOutliner, Outlinely, Scapple, Scrivener, Tinderbox, and Ulysses.
Stars: ✭ 45 (+55.17%)
Mutual labels:  alfred
alfred-postcss-workflow
Alfred App Workflow for https://www.postcss.parts
Stars: ✭ 14 (-51.72%)
Mutual labels:  alfred
alfred-figlet
🔠 Alfred 3 workflow to asciify plain text using figlet.js
Stars: ✭ 16 (-44.83%)
Mutual labels:  alfred
alfred-jira-search
An Alfred workflow to search for Jira tickets
Stars: ✭ 26 (-10.34%)
Mutual labels:  alfred
open-in-iina
Open url in IINA directly from Alfred or Raycast
Stars: ✭ 15 (-48.28%)
Mutual labels:  alfred
Coinc
💰💱Alfred Workflow for currencies conversion
Stars: ✭ 38 (+31.03%)
Mutual labels:  alfred
alfred-network-location
List, filter and activate network locations from within Alfred
Stars: ✭ 31 (+6.9%)
Mutual labels:  alfred
alfred-browser-tabs
🔍 Search browser tabs from Chrome, Brave, Safari, etc..
Stars: ✭ 302 (+941.38%)
Mutual labels:  alfred
alfred-arxiv-workflow
🔎 Alfred workflow to search arxiv.org items
Stars: ✭ 23 (-20.69%)
Mutual labels:  alfred
alfred-r
#rstats Alfred workflow
Stars: ✭ 36 (+24.14%)
Mutual labels:  alfred
alfred-deepl
Utilize DeepL api translator.
Stars: ✭ 19 (-34.48%)
Mutual labels:  alfred
wipfred
🚧Manage your wip.chat todos with alfred
Stars: ✭ 23 (-20.69%)
Mutual labels:  alfred
alfred-google-search
Alfred workflow to do inline google searches (open URL or copy to clipboard)
Stars: ✭ 32 (+10.34%)
Mutual labels:  alfred
alfred-chrome-history
Alfred workflow for Chrome history
Stars: ✭ 35 (+20.69%)
Mutual labels:  alfred

Alfred

Build awesome Alfred workflows with Swift! Previously known as Benchr267/swiftalfred, this project now lives on as Alfred here.

Example

import Alfred

struct Repo: ItemRepresentable {
    var name = "a name!"
    var version = "12.3"
    var link1 = "https://www.example.com"
    var link2 = "https://www.example.com/doc"
    var summary = "This is soooo cool!"

    var item: Item {
        var item = Item(title: "\(name) (\(version))", subtitle: summary, arg: .simple(link1))
        item.alt = ModifierAction(arg: .simple(link2), subtitle: "Open documentation!")
        return item
    }
}
let repos = (0..<100).map { _ in Repo() }
let res = Response(items: repos)

let output = try res.output()
print(output)

Installation

Add the following package to your Package.swift's list of dependencies:

.package(url: "https://github.com/kiliankoe/alfred.git", from: "<#latest#>")

License

This project is under MIT license, see LICENSE for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].