-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepos.yml
1020 lines (1020 loc) · 50.7 KB
/
repos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
workflows:
- https://github.com/0xabu/pdfannots
- https://github.com/109021017/alfred-adb-workflow
- https://github.com/186dk/Alfred_run_bash_profile
- https://github.com/738/alfred-inko
- https://github.com/738/inko
- https://github.com/738/inko-chrome-extension
- https://github.com/738/inko-cli
- https://github.com/738/inko-web
- https://github.com/99designs/aws-vault
- https://github.com/AashikP/alfred-woo-nav
- https://github.com/abdul/alfred-network-location-switch
- https://github.com/ABeehive/lawfred-intelligence
- https://github.com/Acidham/alfred-apple-reminder
- https://github.com/Acidham/alfred-markdown-notes
- https://github.com/Acidham/rsync-folders
- https://github.com/Acidham/search-alfred-workflows
- https://github.com/AdamNSmith/Alfred_Base64
- https://github.com/AdamWagner/alfred-percent-change
- https://github.com/addozhang/alfred-safari-toolkit
- https://github.com/adriantoine/alfred-asana
- https://github.com/ahmadawais/shades-of-purple-alfred
- https://github.com/ahmadawais/Shades-of-Purple-Cygwin
- https://github.com/ahmadawais/Shades-of-Purple-HighlightJS
- https://github.com/ahmadawais/shades-of-purple-hyper
- https://github.com/ahmadawais/shades-of-purple-iterm2
- https://github.com/ahmadawais/shades-of-purple-konsole
- https://github.com/ahmadawais/shades-of-purple-slack
- https://github.com/ahmadawais/shades-of-purple-vscode
- https://github.com/ajgon/alfred2-html-entity-lookup
- https://github.com/ajrosen/Bitwarden-Accelerator
- https://github.com/albertomontagnese/eggtimer
- https://github.com/alexander-heimbuch/linguee-alfred-workflow
- https://github.com/alexandergogl/alfred-org-mode-workflow
- https://github.com/AlexanderWillner/deepl-alfred-workflow2
- https://github.com/alexchantastic/alfred-ip-address-workflow
- https://github.com/alexchantastic/alfred-lipsum-workflow
- https://github.com/alexchantastic/alfred-open-with-vscode-workflow
- https://github.com/alexchantastic/lipsum-shell
- https://github.com/AlexMartinFR/alfred-livewire-docs
- https://github.com/AlexMartinFR/alfred-wordreference
- https://github.com/AlexMartinFR/mojave-alfred-accented-themes
- https://github.com/alexwlchan/alfred_shortcuts_github
- https://github.com/alfonmga/mui-docs-alfred-workflow
- https://github.com/alfred-workflows/awesome-alfred-workflows
- https://github.com/alfredapp/1password-workflow
- https://github.com/alfredapp/applescript-dictionaries-workflow
- https://github.com/alfredapp/deep-contacts-search-workflow
- https://github.com/alfredapp/google-drive-workflow
- https://github.com/alfredapp/launch-url-in-3-browsers-workflow
- https://github.com/alfredapp/low-power-mode-workflow
- https://github.com/alfredapp/magic-8-ball-workflow
- https://github.com/alfredapp/network-quality-workflow
- https://github.com/alfredapp/pause-tabs-workflow
- https://github.com/alfredapp/shortcuts-workflow
- https://github.com/alfredapp/snippet-trigger-email-signatures-workflow
- https://github.com/alfredapp/streaming-genres-workflow
- https://github.com/alfredapp/tinypng-workflow
- https://github.com/alfredapp/window-switcher-workflow
- https://github.com/AlickH/AlfredWorkflows
- https://github.com/almibarss/alfred-git-clone
- https://github.com/alonalon/alfred-battery
- https://github.com/amacfie/cmdmenu
- https://github.com/amoose136/call_or_sms_contact
- https://github.com/andrewbenson/Alfred-Bitcoin-Block-Explorer
- https://github.com/andrewning/alfred-workflows-scientific
- https://github.com/andyjhall/alfred-tableplus
- https://github.com/Angoll/KPass
- https://github.com/ankraft/aw-oneM2M-short-names
- https://github.com/ankraft/onem2m-extract-attributes
- https://github.com/anlar/prismriver-lyrics
- https://github.com/anmolnagpal/alfred-docker-workflows
- https://github.com/AnNOtis/alfred-notion-search
- https://github.com/announce/haste-to-airpods-connection
- https://github.com/anoff/alfred-github
- https://github.com/anshumanv/alfred-github-activity
- https://github.com/anshumanv/alfred-github-notifications
- https://github.com/AntonNiklasson/alfred-loremipsum
- https://github.com/AntonNiklasson/alfred-ramda
- https://github.com/anyboxhq/anybox-alfred-workflow
- https://github.com/anzhihe/Efficient-office
- https://github.com/apiology/upvoter-for-asana
- https://github.com/apple/swift-evolution
- https://github.com/ApppleTurnover/alfred_ia_writer
- https://github.com/arcticicestudio/nord
- https://github.com/aristath/elusive-iconfont
- https://github.com/arp242/uni
- https://github.com/artemy/alfred-jetbrains-projects
- https://github.com/artemy/alfred-ns-schedule
- https://github.com/artikh/alfred-mictools
- https://github.com/atej/alfred-webs
- https://github.com/atian25/alfred-plugin-projj
- https://github.com/attaswift/alfred-swift-evolution
- https://github.com/aubreypwd-old/alfred-workflow-crc32-rand-id
- https://github.com/aubreypwd/alfred-workflow-crc32-rand-id
- https://github.com/auriamg/macdylibbundler
- https://github.com/aurooba/alfred-worflow-audacity-catalina
- https://github.com/aurooba/alfred-workflow-zoom-meetings
- https://github.com/aviaryan/alfred-google-search
- https://github.com/aviaryan/alfred-last2imgur
- https://github.com/awinecki/karabiner-elements-profile-switcher
- https://github.com/azai91/alfred-drive-workflow
- https://github.com/bachya/lp-vault-manager
- https://github.com/BaksiLi/AlfredSnippets
- https://github.com/BaksiLi/AlfredWorkflows
- https://github.com/BalliAsghar/Mailsy
- https://github.com/BalliAsghar/mailsy-alfred
- https://github.com/bcdavasconcelos/Corpora
- https://github.com/bchatard/alfred-jetbrains
- https://github.com/bchatard/jetbrains-alfred-workflow
- https://github.com/bchatard/phpstorm-alfred-workflow
- https://github.com/bear/parsedatetime
- https://github.com/beardyman/alfred-clap-join
- https://github.com/beaverboy-12/Alfred-Minimalist-Themes
- https://github.com/beet/joplin_alfred_actions
- https://github.com/BenchR267/Pod-Search-Alfred
- https://github.com/bendebebe/alfred-futbiner
- https://github.com/BenjaminOddou/alfred-dashlane
- https://github.com/BenjaminOddou/alfred-file-explorer
- https://github.com/BenjaminOddou/alfred-folderify
- https://github.com/BenjaminOddou/alfred-plex
- https://github.com/BenjaminOddou/alfred-smart-webp-compression
- https://github.com/benknight/hue-alfred-workflow
- https://github.com/BenziAhamed/alfred-battery
- https://github.com/BenziAhamed/Menu-Bar-Search
- https://github.com/bevesce/unicode-symbols-search
- https://github.com/biati-digital/alfred-calculate-anything
- https://github.com/bikenik/alfred-anki
- https://github.com/bishless/alfred-panda
- https://github.com/bit2pixel/chrome-control
- https://github.com/bjrnt/alfred-bear
- https://github.com/bjrnt/alfred-project-manager
- https://github.com/bkuhlmann/pennyworth
- https://github.com/blaulan/alfred-beancount
- https://github.com/blueset/alfred-search-unicode
- https://github.com/bmunoz89/alfred-wf-bluetooth-manager
- https://github.com/bonk/alfred-bonk-textlint
- https://github.com/BosEriko/dotfiles
- https://github.com/bpetrynski/alfred-notification-dismisser
- https://github.com/bpetrynski/alfred-open-with-zed
- https://github.com/bradmontgomery/alfred-percent-change
- https://github.com/breezedeus/cnocr
- https://github.com/brentley/alfred-workflows
- https://github.com/briangonzalez/alfred-messages
- https://github.com/brymck/alfredo
- https://github.com/bskim45/alfred-coin-ticker
- https://github.com/c-stephens/call_or_sms_contact
- https://github.com/c-stephens/Call-or-Message-Contact
- https://github.com/CacherApp/alfred-cacher
- https://github.com/caiogondim/alfred-chrome-window-workflow
- https://github.com/caleb531/open-conference-url
- https://github.com/caleb531/play-song
- https://github.com/caleb531/youversion-suggest-alfred
- https://github.com/califa/alfred-emoji-pack
- https://github.com/calpa/alfy-ip
- https://github.com/cclgroupltd/ccl-bplist
- https://github.com/CGenie/alfred-pass
- https://github.com/cghdev/alfred-pritunl
- https://github.com/cghdev/gotunl
- https://github.com/chaifeng/alfred-zoomus
- https://github.com/Chandler-Lu/alfred-ocr
- https://github.com/CharlesMagnuson/temporary-mute
- https://github.com/charliecm/alfred-hyperlink
- https://github.com/chrisbro/alfred-bear
- https://github.com/chrisgrieser/alfred-bibtex-citation-picker
- https://github.com/chrisgrieser/hyper-seek
- https://github.com/chrisgrieser/pandoc_alfred
- https://github.com/chrisgrieser/pdf-annotation-extractor-alfred
- https://github.com/chrisgrieser/shimmering-obsidian
- https://github.com/chrismessina/alfred-app
- https://github.com/chrismessina/alfred-facebook-toolkit
- https://github.com/chrismessina/alfred-instagram-toolkit
- https://github.com/chrismessina/alfred-new-cloud-documents
- https://github.com/chrismessina/alfred-sonos-toolkit
- https://github.com/chrismessina/alfred-stripe-toolkit
- https://github.com/chrismessina/alfred-substack-toolkit
- https://github.com/chrismessina/alfred-theme-chirp
- https://github.com/chrismessina/alfred-theme-craft
- https://github.com/chrismessina/alfred-theme-superhuman
- https://github.com/chrismessina/alfred-twitter-toolkit
- https://github.com/christiaankruger/alfred-workflow-sa-id
- https://github.com/chuckhendo/alfred-tiny-helpers
- https://github.com/citation-style-language/styles
- https://github.com/citelao/Spotify-for-Alfred
- https://github.com/cjlucas/tower-alfred-workflow
- https://github.com/clarencecastillo/alfred-powerthesaurus
- https://github.com/clickysteve/alfred-remote-workflows
- https://github.com/clnt/alfred-tailwindcss-docs
- https://github.com/Cloudstek/alfred-atom
- https://github.com/Cloudstek/alfred-sublime
- https://github.com/CoderMageFox/alfredMagic
- https://github.com/codycodes/alfred-books
- https://github.com/coleifer/peewee
- https://github.com/com30n/alfred-gitlab-search-workflow
- https://github.com/conventional-changelog/standard-version
- https://github.com/Coobaha/suomea
- https://github.com/cortinico/alfred-looks
- https://github.com/cortinico/kscript-template
- https://github.com/crispgm/alfred-cron
- https://github.com/crispgm/alfred-nord
- https://github.com/cs1707/tldr-alfred
- https://github.com/ctwise/alfred-workflows
- https://github.com/ctwise/menudump
- https://github.com/Dameck/alfred-google-books
- https://github.com/danew/alfred-npm-search
- https://github.com/daniel-geffen/alfred-watch-nba
- https://github.com/danielbayley/alfred-finder-copy-path
- https://github.com/danielbayley/alfred-finder-new-item
- https://github.com/danielbayley/homebrew-alfred
- https://github.com/danielecook/gist-alfred
- https://github.com/danielecook/Quiver-alfred
- https://github.com/DanyGLewin/kanka-alfred
- https://github.com/darrikonn/alfred-nym
- https://github.com/Dashlane/dashlane-cli
- https://github.com/david-treblig/slugify-alfred-3
- https://github.com/dbacks2196/alfred-search-open-finder-windows
- https://github.com/ddjfreedom/recent-downloads-alfred-v2
- https://github.com/deanishe/alfred-appscripts
- https://github.com/deanishe/alfred-booksearch
- https://github.com/deanishe/alfred-convert
- https://github.com/deanishe/alfred-duden
- https://github.com/deanishe/alfred-errnum
- https://github.com/deanishe/alfred-fakeum
- https://github.com/deanishe/alfred-firefox
- https://github.com/deanishe/alfred-fixum
- https://github.com/deanishe/alfred-forklift
- https://github.com/deanishe/alfred-fuzzy
- https://github.com/deanishe/alfred-gcal
- https://github.com/deanishe/alfred-mailto
- https://github.com/deanishe/alfred-mpd
- https://github.com/deanishe/alfred-network-location
- https://github.com/deanishe/alfred-pwgen
- https://github.com/deanishe/alfred-reddit
- https://github.com/deanishe/alfred-repos
- https://github.com/deanishe/alfred-safari-assistant
- https://github.com/deanishe/alfred-searchio
- https://github.com/deanishe/alfred-smartfolders
- https://github.com/deanishe/alfred-ssh
- https://github.com/deanishe/alfred-stackexchange
- https://github.com/deanishe/alfred-stackoverflow
- https://github.com/deanishe/alfred-sublime-text
- https://github.com/deanishe/alfred-transmit
- https://github.com/deanishe/alfred-viscosity
- https://github.com/deanishe/alfred-vpn-manager
- https://github.com/deanishe/alfred-workflow
- https://github.com/deanishe/awgo
- https://github.com/deanishe/i-sheet-you-not
- https://github.com/deanishe/zothero
- https://github.com/deletosh/alfred-bluesky
- https://github.com/deltajuliet/deFANG
- https://github.com/demartini/alfred-amphetamine
- https://github.com/demartini/base-configs
- https://github.com/denisidoro/beavr
- https://github.com/denisidoro/navi
- https://github.com/dennis-tra/alfred-cid-decoder
- https://github.com/dennis-tra/image-stego
- https://github.com/dennis-tra/nebula-crawler
- https://github.com/dennis-tra/pcp
- https://github.com/denpy/alfred-curlbus
- https://github.com/devnoname120/alfred-emoji-picker
- https://github.com/dishbreak/alfred3-github-repo-browser
- https://github.com/dkarter/Bang
- https://github.com/dkarter/CoronaTime
- https://github.com/dlenski/python-zxing
- https://github.com/docopt/docopt
- https://github.com/dotson/Discogs-Explorer
- https://github.com/dotson/Lastfm-Lookup
- https://github.com/DottChen/Extract_Files
- https://github.com/doy/rbw
- https://github.com/dracula/alfred
- https://github.com/dragstor/shottr-alfred-workflow
- https://github.com/Drewbadour/Suspicious-Number
- https://github.com/drgrib/alfred-bear
- https://github.com/DrLulz/Anki-Templates
- https://github.com/Duartemartins/Firefox-simplenote-workflow
- https://github.com/duncup/alfred-lmgtfy
- https://github.com/duncup/alfred-time
- https://github.com/dwijesinghe/alfred-gitBranches
- https://github.com/DylanPiercey/local-devices
- https://github.com/edc1591/alfred-itunes-dj
- https://github.com/edgarjs/alfred-github-repos
- https://github.com/egyptik/alfred-laracasts-lessons
- https://github.com/ekonstantinidis/alfred-react-native
- https://github.com/elad661/curlbus
- https://github.com/epilande/alfred-be-quiet
- https://github.com/epilande/alfred-browser-tabs
- https://github.com/epilande/alfred-password-generator
- https://github.com/epilande/alfred-prettier-clipboard
- https://github.com/epilande/alfred-wifi-password
- https://github.com/erikopinaldo/alfred-gif
- https://github.com/ethan-funny/Google-Alfred3-Workflow
- https://github.com/eugenechu/alfred-translayta
- https://github.com/eusi/TwitchStreamer-Alfred-Workflow
- https://github.com/evandcoleman/alfred-itunes-dj
- https://github.com/eventi/noreallyjustfuckingstopalready
- https://github.com/evernote/evernote-sdk-js
- https://github.com/exah/alfred-hotel
- https://github.com/explorador/local-by-flywheel-alfred
- https://github.com/extractions/setup-powerpack
- https://github.com/fabiospampinato/alfred-spaces-workflow
- https://github.com/fabiospampinato/phoenix
- https://github.com/facebook/react
- https://github.com/fallroot/copy-url-for-alfred
- https://github.com/fastlane/fastlane
- https://github.com/fatih-yavuz/alfred-string-operations
- https://github.com/fatih-yavuz/alfred-timer-workflow
- https://github.com/fedecalendino/alfred-currency-converter
- https://github.com/fedecalendino/alfred-emoji-mate
- https://github.com/feetstv/jisho-alfred
- https://github.com/FeMiner/alfred-femine
- https://github.com/FGRibreau/alfred-crates
- https://github.com/filosfino/alfred-conf-editor-workflow
- https://github.com/florianeckerstorfer/alfred-type-text
- https://github.com/fniephaus/alfred-brightness
- https://github.com/fniephaus/alfred-homebrew
- https://github.com/fniephaus/alfred-network
- https://github.com/fniephaus/alfred-pocket
- https://github.com/fniephaus/alfred-travis-ci
- https://github.com/fniephaus/alfred-vmcontrol
- https://github.com/foogywoo/HKAlfred
- https://github.com/FormidableLabs/prism-react-renderer
- https://github.com/FortAwesome/Font-Awesome
- https://github.com/fractaledmind/Classical-Studies-Resources
- https://github.com/franzheidl/copy-paths-to-clipboard
- https://github.com/frdmn/alfred-dongers
- https://github.com/frdmn/alfred-imgur
- https://github.com/frdmn/alfred-ldap
- https://github.com/gabamnml/Keynote-remote
- https://github.com/gabamnml/unlock-your-mac
- https://github.com/gabriel-r/alfred-deepl
- https://github.com/gdavidss/cold-turkey-blocker
- https://github.com/Genymobile/scrcpy
- https://github.com/gharlan/alfred-github-workflow
- https://github.com/gi8lino/workflow-search-wikijs
- https://github.com/gillibrand/alfred-change-case
- https://github.com/gillstrom/osx-battery
- https://github.com/GimmyHchs/alfred-workflow-bitly
- https://github.com/GimmyHchs/workflow-bitly
- https://github.com/ginfuru/alfred-screen-capture
- https://github.com/giovannicoppola/alfred-crypto-tracker
- https://github.com/giovannicoppola/alfred-weworkflow
- https://github.com/gitatmax/pacmax
- https://github.com/github/gemoji
- https://github.com/github/gitignore
- https://github.com/github/octicons
- https://github.com/gleitz/howdoi
- https://github.com/go-jira/jira
- https://github.com/godbout/alfred-airplay
- https://github.com/godbout/alfred-kat
- https://github.com/godbout/alfred-time
- https://github.com/godbout/AlfredKat
- https://github.com/gohoyer/Alfred-Restore-Iterm-Arrangement
- https://github.com/goodbest/Alfred_Workflow_Music163
- https://github.com/google/google-api-go-client
- https://github.com/google/material-design-icons
- https://github.com/gpmcadam/alfred-jira-issue-list
- https://github.com/gshewakr/alfred-whatsapp-toolkit
- https://github.com/h3l/douban-workflow
- https://github.com/hafffe/alfred-battery
- https://github.com/hanjm/alfred-ssh-iterm-workflow
- https://github.com/Haojen/alfred-Parrot
- https://github.com/harrtho/alfred-pyworkflow
- https://github.com/harsilspatel/googol
- https://github.com/harthur/replace
- https://github.com/hauselin/obsidian-alfred
- https://github.com/hauzer/scrobbler
- https://github.com/havoc-io/ssh_config
- https://github.com/haya14busa/action-bumpr
- https://github.com/hbuschme/doi-tools-alfred-workflow
- https://github.com/helixquar/randomeverything
- https://github.com/hfg-gmuend/openmoji
- https://github.com/hgrecco/pint
- https://github.com/hiiightower/Most-Clean-Alfred-Theme
- https://github.com/holgerbrandl/kscript
- https://github.com/Homebrew/homebrew-bundle
- https://github.com/hubsmoke/bro
- https://github.com/hug33k/Alfred-ShellVariables
- https://github.com/hujiaweibujidao/Gank-Alfred-Workflow
- https://github.com/hzhgino/alfred-work-firefox
- https://github.com/iamcal/emoji-data
- https://github.com/iamstevendao/alfred-open-with-vscode
- https://github.com/iandol/bookends-tools
- https://github.com/iansinnott/alfred-maestro
- https://github.com/idpaterson/alfred-wunderlist-workflow
- https://github.com/iFurySt/Alfred-iMessage-Reader
- https://github.com/igrigorik/ga-beacon
- https://github.com/ihowson/EggTimer2
- https://github.com/ilstar/bear_toc_alfred_workflow
- https://github.com/ilstar/http_status_code
- https://github.com/imagemin/imagemin
- https://github.com/imagemin/imagemin-gifsicle
- https://github.com/imagemin/imagemin-mozjpeg
- https://github.com/imagemin/imagemin-pngquant
- https://github.com/imesut/alfred-prayer-times
- https://github.com/imesut/alfred-yeelight-pbc
- https://github.com/imjohnbo/alfred-open-latest-weekly-radar
- https://github.com/imjohnbo/weekly-radar
- https://github.com/importre/alfred-figlet
- https://github.com/importre/alfred-gi
- https://github.com/importre/alfred-hl
- https://github.com/importre/alfred-mdi
- https://github.com/importre/alfred-slack-status
- https://github.com/importre/alfred-tabs
- https://github.com/importre/alfred-tidy
- https://github.com/inkdropapp/inkdrop-alfred-workflow
- https://github.com/invious/alfred-songwhip
- https://github.com/invious/alfred3-songkick
- https://github.com/IOIO72/alfred-coder
- https://github.com/IOIO72/alfred-sticky-note
- https://github.com/IOIO72/alfred-theme-minimal-wide
- https://github.com/IOIO72/alfred-theme-monochrome
- https://github.com/IOIO72/alfred-zipinfo
- https://github.com/isaacpz/Alfred-WordSearch
- https://github.com/isaacs/node-tap
- https://github.com/ishibaki/flybase_search
- https://github.com/isometry/alfred-pipe
- https://github.com/isometry/alfred-ssh
- https://github.com/isometry/alfred-tty
- https://github.com/isometry/alfredworkflows
- https://github.com/j2thex/keyboard-language-switcher
- https://github.com/jackchuka/alfred-workflow-bookmarks
- https://github.com/jackchuka/alfred-workflow-ghq
- https://github.com/jackchuka/alfred-workflow-jira
- https://github.com/jaekyeom/alfred-typora-workflow
- https://github.com/James-Lam/alfred-open-with-cursor
- https://github.com/Jamesits/alfred-workflow-telegram
- https://github.com/janclarin/jisho-alfred
- https://github.com/janclarin/jisho-alfred-workflow
- https://github.com/jarlefosen/alfred-gcloud-shortcuts
- https://github.com/jaroslawhartman/TimeZones-Alfred
- https://github.com/jason0x43/alfred-slack
- https://github.com/jason0x43/alfred-toggl
- https://github.com/jason0x43/alfred-weather
- https://github.com/jason0x43/go-alfred
- https://github.com/javayhu/Gank-Alfred-Workflow
- https://github.com/jbharat/night-owl-alfred-theme
- https://github.com/jcsalterego/pngpaste
- https://github.com/jdecked/twemoji
- https://github.com/jdno/alfred-gitignore
- https://github.com/jeeftor/alfredAirports
- https://github.com/jeeftor/AlfredWorkflowDirectory
- https://github.com/jeeftor/EmojiTaco
- https://github.com/jeffory/wphash-alfred-workflow
- https://github.com/jenghis/nshift
- https://github.com/jeppestaerk/alfred-chuck-norris-jokes
- https://github.com/jeppestaerk/alfred-currency-conversion
- https://github.com/jeppestaerk/alfred-show-network-info
- https://github.com/jeremy-jin/alfred-open-pycharm
- https://github.com/jerrebm/alfred-laracasts-lessons
- https://github.com/jessedobbelaere/alfred-iterm-profiles-workflow
- https://github.com/jessesquires/safari-tabs-to-omnifocus
- https://github.com/jhkuperus/alfred-spotify
- https://github.com/jin5354/alfred3-workflow-CurrencyConvert
- https://github.com/jknight/MacWindowLayoutTiles
- https://github.com/jmeischner/alfred-bear
- https://github.com/jmeischner/alfred-bear-daily-log
- https://github.com/jmeischner/alfred-bear-jira-ticket
- https://github.com/jmeischner/alfred-bear-okrs
- https://github.com/jmjeong/alfred-extension
- https://github.com/jmstacey/screenbrightness
- https://github.com/jnewland/alfred-open-windows
- https://github.com/joecohens/alfred-dinkbit
- https://github.com/joecohens/alfred-hyper
- https://github.com/joetannenbaum/alfred-workflow
- https://github.com/johandebeurs/alfred-mstodo-workflow
- https://github.com/john-shine/DeepL-Alfred-translator
- https://github.com/joke2k/faker
- https://github.com/jonrohan/alfred-figma
- https://github.com/jopemachine/alfred-chrome-workflow
- https://github.com/jopemachine/alfred-chromium-workflow
- https://github.com/jopemachine/Alfred-evernote-workflow
- https://github.com/jopemachine/alfred-kakaotalk-workflow
- https://github.com/josecanhelp/alfred-ram-workflow
- https://github.com/joshtronic/alfred-workflow-flush
- https://github.com/joshtronic/php-loremipsum
- https://github.com/jsumners/alfred-emoji
- https://github.com/julienXX/terminal-notifier
- https://github.com/junegunn/fzf
- https://github.com/juniorsaldanha/CoinMarketCap-alfred
- https://github.com/jvandyke/alfred-hastebin
- https://github.com/Jython1415/alfred-archive-page
- https://github.com/kaito-kidd/markdown-image-alfred
- https://github.com/kangaechu/aws-vault-alfred-workflow
- https://github.com/Kapeli/Dash-Alfred-Workflow
- https://github.com/karimkaylani/alfred-sonoscontroller
- https://github.com/katernet/darkmode
- https://github.com/kawamataryo/alfred-gyazo-uploader
- https://github.com/kawamataryo/alfred-imagemin
- https://github.com/kbshl/alfred-vscode
- https://github.com/keepassxreboot/keepassxc
- https://github.com/keesiemeijer/alfred-wordpress-developer-workflow
- https://github.com/keesiemeijer/wp-parser-json
- https://github.com/kefranabg/readme-md-generator
- https://github.com/keith/contacts-cli
- https://github.com/keith/reminders-cli
- https://github.com/kennethreitz/requests
- https://github.com/kentoak/deepLAlfred
- https://github.com/kentoak/slack_post_alfred
- https://github.com/Ketouem/fullscreen-app-alfred-workflow
- https://github.com/kevin-funderburg/alfred-microsoft-onenote-navigator
- https://github.com/kevinjalbert/alfred-notion
- https://github.com/kevinjalbert/notion-heroku
- https://github.com/kevinjalbert/notion-scripts
- https://github.com/kevinjalbert/notion-toolbox
- https://github.com/KevinRamsunder/alfred3-imdb-workflow
- https://github.com/KeyesHsu/alfred-tmux-workflow
- https://github.com/Kikobeats/alfred-simple-dark
- https://github.com/Kikobeats/alfred-title
- https://github.com/kinabalu/alfred-chess
- https://github.com/kirel/detexify
- https://github.com/kizzx2/bitbar-countdown-timer
- https://github.com/klaascuvelier/alfred-mdn
- https://github.com/klauspost/lctime
- https://github.com/klementtan/alfred-cd
- https://github.com/klementtan/alfred-vscode
- https://github.com/kometenstaub/metadata-extractor
- https://github.com/konoui/alfred-bookmarks
- https://github.com/konoui/alfred-k8s
- https://github.com/konoui/alfred-tldr
- https://github.com/kovstas/alfred-sidecar
- https://github.com/krisk/Fuse
- https://github.com/kudrykv/alfred-craftdocs
- https://github.com/kudrykv/alfred-craftdocs-searchindex
- https://github.com/kylesezhi/alfred-jisho
- https://github.com/kylestratis/roam-weekly-plan
- https://github.com/kylestratis/roam-weekly-review
- https://github.com/lacherogwu/alfred-workflows-json-prettier
- https://github.com/larkov/alfred-songlink-workflow
- https://github.com/LastPass/lastpass-cli
- https://github.com/ldebritto/alfred-file-action-add-to-things
- https://github.com/leafney/alfred-markdown-search
- https://github.com/leandromatos/pre-theme
- https://github.com/learn-anything/alfred-workflows
- https://github.com/LeEnno/alfred-terminalfinder
- https://github.com/leolabs/alfred-gitmoji
- https://github.com/leozhang2018/alfred-httpstat
- https://github.com/lgarron/folderify
- https://github.com/lhaeger/lastpass-alfred-workflow
- https://github.com/libp2p/go-libp2p
- https://github.com/lin714093880/netease-lyrics-downloader
- https://github.com/lincolnloop/python-qrcode
- https://github.com/lisdude/alfred-firefox-window-workflow
- https://github.com/liubiantao/alfred-workflow-what-rubbish
- https://github.com/lnquy/cron
- https://github.com/logicxd/alfred-vscodediff
- https://github.com/lorentzca/alfred-circleci-workflow
- https://github.com/loris/alfred-producthunt-workflow
- https://github.com/lotabout/skim
- https://github.com/lou1306/alfred-dbz
- https://github.com/lowercasename/docdown
- https://github.com/lox/alfred-github-jump
- https://github.com/lsgrep/mldocs
- https://github.com/lucaorio/nero
- https://github.com/lucaperret/alfred-now
- https://github.com/lukdiekm/alfred-shortcuts
- https://github.com/lukdiekm/zoom-with-alfred
- https://github.com/lukewaite/alfred-gitlab
- https://github.com/luogreen/alfred-workflow-docker
- https://github.com/luoweihua7/exchange-workflow
- https://github.com/luoweihua7/ExchangeFlow
- https://github.com/m0rtyn/alfred-fast-note-to-notion
- https://github.com/m1keil/alfred-vagrant-workflow
- https://github.com/m9dfukc/deepl-alfred-workflow
- https://github.com/mac4n6/macMRU-Parser
- https://github.com/macedotavares/Glass-Dome
- https://github.com/mafintosh/peerflix
- https://github.com/mandrigin/AlfredSwitchWindows
- https://github.com/manosim/alfred-react-native
- https://github.com/marckrenn/alfred-fastlane
- https://github.com/mariuskiessling/alfred-airpods-connector
- https://github.com/markdown-it/markdown-it-abbr
- https://github.com/markdown-it/markdown-it-emoji
- https://github.com/markdown-it/markdown-it-ins
- https://github.com/markdown-it/markdown-it-mark
- https://github.com/markgrovs/MailSendToTodoist
- https://github.com/markjaquith/Alfred-Silent-Mention
- https://github.com/markokaestner/of-task-actions
- https://github.com/marnovo/alfred-theme-macos
- https://github.com/matryer/bitbar
- https://github.com/MatthewWest/pass-alfred
- https://github.com/MatthysDev/alfred-tailwind-colors
- https://github.com/mattsson/movies-ratings-alfred
- https://github.com/mattstratton/alfred-workflow-photoshop-url
- https://github.com/maxwelljordanwhite/pacmax-search
- https://github.com/maxwelljordanwhite/search-pacmax
- https://github.com/mblode/alfred-trello
- https://github.com/mdreizin/chrome-bookmarks-alfred-workflow
- https://github.com/meck/alfred-hoogle
- https://github.com/melihovv/alfred-irregular-workflow
- https://github.com/mermaid/alfred-dark-mode-toggle
- https://github.com/mermaid/mojave-darkmode-toggle
- https://github.com/meyer/alfred-emoji-workflow
- https://github.com/mgmeyers/pdfannots2json
- https://github.com/mi-ca/alfredapp_flatuicolors_workflow
- https://github.com/MichaelDanilov/alfred-yatranslate
- https://github.com/mijailr/alfred-devto
- https://github.com/mikelxc/sidecar-alfredworkflow
- https://github.com/mikezahno/alfredworkflow-ffp
- https://github.com/MikoMagni/Alfrello
- https://github.com/MikoMagni/Trello-Workflow-for-Alfred
- https://github.com/mikybars/alfred-git-clone
- https://github.com/milesj/emojibase
- https://github.com/miromannino/alfred-wifi-control
- https://github.com/mixedfeelings/alfred-jettison
- https://github.com/mkalygin/alfred-yandex-translate
- https://github.com/mklement0/n-install
- https://github.com/mklement0/voices
- https://github.com/mmazzarolo/alfred-jira-search
- https://github.com/mnadel/freddiebear
- https://github.com/mnml-theme/alfred
- https://github.com/Moeriki/alfred-bgg
- https://github.com/molavec/alfred-plantuml-generator
- https://github.com/moranje/alfred-workflow-todoist
- https://github.com/motemen/ghq
- https://github.com/moul/alfred-workflow-gauth
- https://github.com/mpco/Alfred3-workflow-recent-documents
- https://github.com/mpco/AlfredWorkflow-DEVONthink-Search
- https://github.com/mpco/AlfredWorkflow-Recent-Documents
- https://github.com/mperezi/alfred-git-clone
- https://github.com/mr-pennyworth/alfred-asciimath
- https://github.com/mr-pennyworth/alfred-better-dictionaries
- https://github.com/mr-pennyworth/alfred-cleanshot
- https://github.com/mr-pennyworth/alfred-clipboard-ocr
- https://github.com/mr-pennyworth/alfred-extra-pane
- https://github.com/mr-pennyworth/alfred-fastest-emoji
- https://github.com/mr-pennyworth/alfred-gif
- https://github.com/mr-pennyworth/alfred-history-search
- https://github.com/mr-pennyworth/alfred-meta-ai-flash-imagine
- https://github.com/mr-pennyworth/AlfredSwift
- https://github.com/mrmartineau/alfred-npm-versions
- https://github.com/mrodalgaard/alfred-network-workflow
- https://github.com/mschmidtkorth/alfred-clickup-msk
- https://github.com/mschmidtkorth/alfred-sbb-msk
- https://github.com/msoedov/Alfred-collection
- https://github.com/mttjhn/alfred-bunch
- https://github.com/mttjhn/alfred-estimator
- https://github.com/multiformats/cid
- https://github.com/MuYunyun/flow
- https://github.com/N4S4/synology-api
- https://github.com/nassendelft/alfred-android-adb
- https://github.com/nathangathright/alfred-songlink-search
- https://github.com/nathangathright/alfred-steno
- https://github.com/nekottyo/alfred-datadog-workflow
- https://github.com/newdark/faker-alfred-workflow
- https://github.com/ng-tech-edu/Soogle
- https://github.com/ngreenstein/alfred-process-killer
- https://github.com/nguyenvanduocit/alfred-cool
- https://github.com/nicklayb/alfred-bitbucket
- https://github.com/nicklayb/alfred-elm
- https://github.com/nicoalbanese/df-search-api-next
- https://github.com/nielsr2/Move-Dock-Alfred-Workflow
- https://github.com/nightgale-xxe/Anonymous-mail-Alfred
- https://github.com/nightgrey/alfred-open-vsc-project
- https://github.com/nikersify/alfred-polyglot
- https://github.com/nikipore/alfred-firefoxbookmarks
- https://github.com/nikipore/alfred-python
- https://github.com/nikitavoloboev/alfred-ask-create-share
- https://github.com/nikitavoloboev/alfred-awesome-lists
- https://github.com/nikitavoloboev/alfred-learn-anything
- https://github.com/nikitavoloboev/alfred-my-mind
- https://github.com/nikitavoloboev/alfred-web-searches
- https://github.com/nikitavoloboev/github-stars
- https://github.com/nikitavoloboev/knowledge
- https://github.com/nikitavoloboev/small-workflows
- https://github.com/nikolaeu/numi
- https://github.com/ninja-smurf/alfred-ninja-sort
- https://github.com/Ninjasenap/alfred-ninja-sort
- https://github.com/nire0510/d2
- https://github.com/nkcmr/alfred-apple-app-search
- https://github.com/NorthIsUp/alfred-workflow
- https://github.com/NorthIsUp/alfred-workflow-py3
- https://github.com/npm/node-semver
- https://github.com/ObaTakeshi/touch_memo_workflow
- https://github.com/obq777/touch_memo_workflow
- https://github.com/obstschale/NSC
- https://github.com/oldcai/CorrectSpelling
- https://github.com/oott123/alfred-clipboard-ocr
- https://github.com/otherguy/alfred-airports-workflow
- https://github.com/otherguy/alfred-passwords-workflow
- https://github.com/packal/repository
- https://github.com/paris-ci/Alfred-Emoji-Pack-Update
- https://github.com/patrickkahl/alfred-bitly
- https://github.com/pawelgrzybek/div
- https://github.com/payers1/alfred-postico-favorites-workflow
- https://github.com/perfectworks/alfred-workflow-moment
- https://github.com/PeterDing/iScript
- https://github.com/petervanderdoes/gitflow-avh
- https://github.com/pglombardo/alfred-python-resources
- https://github.com/pglombardo/PasswordPusher
- https://github.com/pglombardo/pwpush-alfred
- https://github.com/phallstrom/AlfredDig
- https://github.com/phguo/AskGPT
- https://github.com/phpfunk/alfred-spotify-controls
- https://github.com/phyllisstein/alp
- https://github.com/pilotmoon/PopClip-Extensions
- https://github.com/pkkid/python-plexapi
- https://github.com/pnlng/alfred-url-actions
- https://github.com/pochemuto/alfred-help-workflow
- https://github.com/ponpoko1968/alfred-paymo-task-timer
- https://github.com/popomore/projj
- https://github.com/postmodern/chruby
- https://github.com/prashantpalikhe/alfred-bundlephobia
- https://github.com/prashantpalikhe/alfred-iban
- https://github.com/prashantpalikhe/alfred-vuex
- https://github.com/praxder/Alfred_Base64
- https://github.com/prettier/prettier
- https://github.com/pritunl/pritunl
- https://github.com/progfay/Gyalfred
- https://github.com/program247365/alfred-indiehackers
- https://github.com/pryley/alfred-the-archive
- https://github.com/pstadler/alfred-screensharing
- https://github.com/PurpleBooth/alfred-emoji-snippet-pack
- https://github.com/pypa/pip
- https://github.com/pyrho/alfred-firefoxtabswitch
- https://github.com/python-excel/xlrd
- https://github.com/qbunt/alfredmetro
- https://github.com/qiujie8092916/alfred_remote_IINA_Controller
- https://github.com/qiujie8092916/alfred_remote_Netease_Controller
- https://github.com/qlassiqa/qWorkflow
- https://github.com/r3volution11/material-palenight-alfred-theme
- https://github.com/raarellano/alfred-lorem-ipsum-workflow
- https://github.com/rack/rack
- https://github.com/radibit/alfred-coolors
- https://github.com/radibit/alfred-keycode
- https://github.com/radibit/alfred-vue
- https://github.com/raguay/MyAlfred
- https://github.com/raisedadead/alfred-tor
- https://github.com/ravelll/wifi-workflow
- https://github.com/raycast/script-commands
- https://github.com/rbaumier/alfred-transmission
- https://github.com/rbenv/rbenv
- https://github.com/RedcoatAsher/delete-duplicate-downloads-alfred3
- https://github.com/relevantfruit/alfred-theme
- https://github.com/renuo/semaphoreci-workflow
- https://github.com/rfyiamcool/multi-screen-jump
- https://github.com/rhlsthrm/alfred-crypto-tracker
- https://github.com/rhydlewis/alfred-search-omnifocus
- https://github.com/rhydlewis/search-mailmate
- https://github.com/rhydlewis/search-omnifocus
- https://github.com/rhythm191/alfred-emmet
- https://github.com/rigonatti/Day-one-Instant-Import
- https://github.com/rknightuk/alfred-reminders-helper
- https://github.com/rknightuk/alfred-workflows
- https://github.com/rkoval/alfred-aws-console-services-workflow
- https://github.com/robjtede/alfred-caniuse-rs
- https://github.com/robwalton/alfred-taskpaper-workflow
- https://github.com/robwalton/alfred-ulysses-workflow
- https://github.com/RootReturn0/Alfred-Markdown-Page-Break
- https://github.com/rossmacarthur/emojis
- https://github.com/rossmacarthur/powerpack
- https://github.com/ruedap/alfred-bootstrap-icons-workflow
- https://github.com/ruedap/alfred-emma-css-workflow
- https://github.com/ruedap/alfred-font-awesome-workflow
- https://github.com/ruedap/alfred2-font-awesome-workflow
- https://github.com/rust-lang/rust-clippy
- https://github.com/rust-lang/rustfmt
- https://github.com/rwilgaard/alfred-bitbucket-search
- https://github.com/rwilgaard/alfred-confluence-search
- https://github.com/ryanoasis/nerd-fonts
- https://github.com/ryou/alfred-html-entity-encoder
- https://github.com/s00500/Alfred-Home-assistant-workflow
- https://github.com/SalAldana/alfred-blink
- https://github.com/sampayo/alfred-workflow-randomeverything
- https://github.com/sampayo/Alfred-WorkFlows
- https://github.com/SamVerschueren/alfred-firebase
- https://github.com/SamVerschueren/alfred-fkill
- https://github.com/SamVerschueren/alfred-ionic
- https://github.com/SamVerschueren/alfred-link
- https://github.com/SamVerschueren/alfred-ng
- https://github.com/SamVerschueren/alfred-updater
- https://github.com/santinic/how2
- https://github.com/sasikanth513/alfred-meteor-packages
- https://github.com/sballin/alfred-search-notes-app
- https://github.com/sbarex/QLMarkdown
- https://github.com/schwark/alfred-unifi
- https://github.com/ScottLNorvell/alfred-slack-2-markdown
- https://github.com/sdras/night-owl-vscode-theme
- https://github.com/sethlilly/Font-Awesome-Symbols-for-Sketch
- https://github.com/sganslandt/solarized-alfred2
- https://github.com/Sh1d0w/alfred-flutter-docs
- https://github.com/shaodahong/alfred-code
- https://github.com/shaoshing/alfred-evernote
- https://github.com/shazoom/banana_terminal
- https://github.com/shensquared/Alfred-Unicodeit-Workflow
- https://github.com/Sheraff/alfred-workflow-mockup
- https://github.com/Sheraff/piratebay-alfred-workflow
- https://github.com/Sheraff/tvshows-alfred-workflow
- https://github.com/Sheraff/urbandictionary-alfred-workflow
- https://github.com/shirohana/alfred3-youtube-control
- https://github.com/shmulvad/alfred-nightshift
- https://github.com/shmulvad/alfred-roman-numerals
- https://github.com/shmulvad/alfred-tinypng
- https://github.com/ShogunPanda/alfred-chrome
- https://github.com/sigito/Linguee-Workflow-for-Alfred
- https://github.com/silverwind/default-gateway
- https://github.com/SimonSapin/snippets
- https://github.com/sindresorhus/active-win
- https://github.com/sindresorhus/active-win-cli
- https://github.com/sindresorhus/alfred-dark-mode
- https://github.com/sindresorhus/alfred-emoj
- https://github.com/sindresorhus/alfred-lock
- https://github.com/sindresorhus/alfred-npms
- https://github.com/sindresorhus/alfred-simple
- https://github.com/sindresorhus/alfred-xcode
- https://github.com/sindresorhus/alfy
- https://github.com/sindresorhus/get-windows
- https://github.com/sindresorhus/internal-ip
- https://github.com/sindresorhus/os-locale
- https://github.com/sindresorhus/public-ip
- https://github.com/sindresorhus/superb
- https://github.com/sindresorhus/windows-cli
- https://github.com/sindresorhus/yes-no-words
- https://github.com/sipt/awpark
- https://github.com/skibitsky/alfred-timing
- https://github.com/skibitsky/current-task
- https://github.com/skibitsky/dotfiles
- https://github.com/skotzko/shhhhh
- https://github.com/skress/alfredapp-purescript-pursuit
- https://github.com/skrzyszewski/alfred-theme-pure
- https://github.com/skydiver/alfred-browsers-profiles
- https://github.com/skydiver/alfred-chrome-profiles
- https://github.com/skydiver/alfred-network-drives
- https://github.com/skydiver/alfred-pretty-sql
- https://github.com/skydiver/alfred-vercel
- https://github.com/slunak/abuseipdb-alfred-workflow
- https://github.com/slyboots/figmoji
- https://github.com/smargh/alfred_pandoctor
- https://github.com/smudge/nightlight
- https://github.com/snooze92/alfred-epoch-converter
- https://github.com/sonicwu/alfred-rgb2hex
- https://github.com/sorrycc/alfred-douban
- https://github.com/spamwax/alfred-pinboard
- https://github.com/spamwax/alfred-pinboard-rs
- https://github.com/spinscale/alfred-workflow-elastic-docs
- https://github.com/squatto/alfred-imessage-2fa
- https://github.com/srsudar/eg
- https://github.com/ssent1/Playa
- https://github.com/ssgreg/AlfredWorkflows
- https://github.com/sstephenson/bats
- https://github.com/SteliosHa/Alfred_File_Creator
- https://github.com/stephancasas/alfred-mouseless-messenger
- https://github.com/Stephen-Lon/Alfred-workflow-open-macos-settings-panes
- https://github.com/steyep/alfred-jira
- https://github.com/stgarf/EggTimer4
- https://github.com/stoe/alfred-github-helper
- https://github.com/StreisandEffect/streisand
- https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred
- https://github.com/stuartcryan/lastpass-alfred-workflow
- https://github.com/stuartcryan/rapid-browser-tabs-for-alfred
- https://github.com/Stvad/alfred-otter
- https://github.com/stve/alfred-vpn
- https://github.com/Sunnyyoung/WeChatTweak-macOS
- https://github.com/sunshinev/markdown-image-upload-github
- https://github.com/sunshinev/remote_pics
- https://github.com/surrealroad/alfred-notes
- https://github.com/surrealroad/alfred-reminders
- https://github.com/svenko99/alfred-annas-archive
- https://github.com/svenkreiss/unicodeit
- https://github.com/svsool/alfred-explainshell
- https://github.com/t0k4rt/phpqrcode
- https://github.com/Tasyp/alfred-rbw
- https://github.com/taylorludwig/Resolutions-Alfred
- https://github.com/teake/pasterrr
- https://github.com/technicalpickles/alfred-system-audio
- https://github.com/techouse/alfred_workflow
- https://github.com/techouse/alfred-create-react-app-docs
- https://github.com/techouse/alfred-django-docs
- https://github.com/techouse/alfred-flask-docs
- https://github.com/techouse/alfred-gitmoji
- https://github.com/techouse/alfred-laravel-docs
- https://github.com/techouse/alfred-nova-docs
- https://github.com/techouse/alfred-react-docs
- https://github.com/techouse/alfred-tailwindcss-docs
- https://github.com/techouse/alfred-vue-docs
- https://github.com/techouse/django-docs-parser
- https://github.com/techouse/flask-docs-parser
- https://github.com/tekezo/Karabiner-Elements
- https://github.com/tesseract-ocr/tesseract
- https://github.com/TfTHacker/obsidian42-brat
- https://github.com/thedevs-network/alfred-kutt
- https://github.com/theonesean/alfred-link-filter
- https://github.com/thlorenz/doctoc
- https://github.com/thomashempel/AlfredGoogleTranslateWorkflow
- https://github.com/threeplanetssoftware/apple_cloud_notes_parser
- https://github.com/tianhao/alfred-mweb-workflow
- https://github.com/tillkruss/alfred-laravel-docs
- https://github.com/tillkruss/alfred-lorem-ipsum
- https://github.com/tilmanginzel/alfred-bluetooth-workflow
- https://github.com/Timac/VPNStatus
- https://github.com/titouanmathis/alfred-jira-search
- https://github.com/tldr-pages/tldr
- https://github.com/tmcknight/Movie-and-TV-Show-Search-Alfred-Workflow
- https://github.com/tmux-python/libtmux
- https://github.com/TobiasMende/alfred-audio-switcher
- https://github.com/toland/qlmarkdown
- https://github.com/tomoyukikashiro/dropbox-paper-alfred-workflow
- https://github.com/tomy0000000/Coinc
- https://github.com/tomy0000000/coon
- https://github.com/tonsky/FiraCode
- https://github.com/TonyWu20/Scipy-package-search-Alfred-workflow
- https://github.com/TooSchoolForCool/LeetCode-Search
- https://github.com/toy/blueutil
- https://github.com/tplk/typograf-now
- https://github.com/trentm/json
- https://github.com/tricinel/edge-theme-alfred
- https://github.com/trietsch/alfred-bluetooth-connector
- https://github.com/TTNomi/awpark
- https://github.com/tupton/alfred-chrome-history
- https://github.com/tupton/alfred-safari-history
- https://github.com/turusuke/alfred-cleanshot
- https://github.com/twio142/alfred-workflow-search
- https://github.com/tylersticka/alfred-keepingyouawake
- https://github.com/typicode/hotel
- https://github.com/typograf/typograf
- https://github.com/uchida/alfred-switch-bluetooth
- https://github.com/uetchy/alfred-workflow-ghq
- https://github.com/uglow/active-win-log
- https://github.com/untoldwind/alfred2-layout
- https://github.com/urre/alfredinary
- https://github.com/usmanity/open-page-alfred-workflow
- https://github.com/VaalaCat/synology-alfred
- https://github.com/vamfoom/keyboard-maestro-type-clipboard-to-app
- https://github.com/vandesign/alfred-detoxit
- https://github.com/vanstrouble/new-safari-window-alfred-workflow
- https://github.com/vdesabou/alfred-spotify-mini-player
- https://github.com/vegardinho/alfred_bluetooth_controller
- https://github.com/veridit/alfred-tabs-improved
- https://github.com/vinaywadhwa/Go-Home-Alfred
- https://github.com/vinaywadhwa/Google-Account-Switcher---Alfred
- https://github.com/vinaywadhwa/justwatch-alfred
- https://github.com/vinkla/alfred-packagist
- https://github.com/Vinzent03/obsidian-advanced-uri
- https://github.com/vitorgalvao/custom-alfred-iterm-scripts
- https://github.com/vitorgalvao/notificator
- https://github.com/vivaxy/alfred-open-in-vscode
- https://github.com/vivaxy/alfred-open-in-webstorm
- https://github.com/vmitchell85/alforge
- https://github.com/vmitchell85/alfred-vuejs-docs
- https://github.com/vookimedlo/alfred-various-screenshots
- https://github.com/voostindie/vincents-productivity-suite-for-alfred
- https://github.com/wanasit/chrono
- https://github.com/wayneyaoo/alfred-cheat
- https://github.com/webcoderkz/alfred-caffeinate
- https://github.com/Wei-Xia/alfred-stock-price-workflow
- https://github.com/wensonsmith/QRcodeCreator
- https://github.com/wensonsmith/YoudaoTranslate
- https://github.com/wensonsmith/YoudaoTranslator
- https://github.com/wesbaker/alfred-boardgamegeek
- https://github.com/wesbaker/alfred-dndbeyond-workflow
- https://github.com/wesbaker/alfred-drivethrurpg
- https://github.com/wesbaker/alfred-goodreads-workflow
- https://github.com/wesbaker/alfred-kickstarter-workflow
- https://github.com/wesbaker/alfred-stardewvalleywiki
- https://github.com/westerlind/alfred-raindrop-search
- https://github.com/wezm/titlecase
- https://github.com/whomwah/alfred-github-workflow
- https://github.com/Wildog/Ariafred
- https://github.com/willbchang/alfred-extend-hotkey-triggers
- https://github.com/willbchang/alfred-open-in-editor
- https://github.com/willfarrell/alfred-caniuse-workflow
- https://github.com/willfarrell/alfred-cdn-workflow
- https://github.com/willfarrell/alfred-encode-decode-workflow
- https://github.com/willfarrell/alfred-pkgman-workflow
- https://github.com/winkerVSbecks/alfred-react-launcher
- https://github.com/wkoffel/alfred-terminal-control
- https://github.com/wmorland/alfred-py3-default-browser
- https://github.com/wolasss/alfred-climbing-grades-converter
- https://github.com/wolasss/alfred-meteor-docs
- https://github.com/WoLpH/alfred-converter
- https://github.com/wookayin/alfred-latex-symbols-workflow
- https://github.com/wookayin/alfred-open-color-workflow
- https://github.com/wookayin/alfred-papers3-workflow
- https://github.com/wotell/alfred-workflow-domoticz
- https://github.com/wrjlewis/notion-search-alfred-workflow
- https://github.com/wrjlewis/notion-search-alfred5-workflow
- https://github.com/wunderlicht/killtouchbar
- https://github.com/wx-chevalier/Awesome-CS-Books
- https://github.com/wx-chevalier/Awesome-Lists
- https://github.com/wx-Yao/alfred-cheat
- https://github.com/wxyyxc1992/Awesome-Lists
- https://github.com/wxyyxc1992/xCompass
- https://github.com/xeric/alfred-find2kill
- https://github.com/xeric/alfred-outlook
- https://github.com/xfslove/alfred-google-translate
- https://github.com/xfslove/alfred-language-configuration
- https://github.com/xilopaint/alfred-battery
- https://github.com/xilopaint/alfred-books
- https://github.com/xilopaint/alfred-network-workflow
- https://github.com/xilopaint/alfred-pdf-tools
- https://github.com/xilopaint/alfred-things
- https://github.com/xilopaint/alfred-urban-dictionary
- https://github.com/xudaolong/CodeVar
- https://github.com/xuyecan/alfred-chathub
- https://github.com/yannickglt/alfred-devdocs
- https://github.com/yannickglt/alfred-slack
- https://github.com/yetone/bob-plugin-openai-polisher
- https://github.com/yinan-c/alfred-translate-it
- https://github.com/yohasebe/openai-chat-api-workflow
- https://github.com/yourtion/Alfred_NumToCny
- https://github.com/yu-kgr/alfred-slash-workflow