Jump to content

SamEdwardes

Member
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

SamEdwardes's Achievements

Helping Hand

Helping Hand (3/5)

1

Reputation

  1. I am working on a very similar workflow. If it helps, here is my filter script: import json import sys from pathlib import Path try: query = sys.argv[1] except IndexError: query = None data = { 'items': [] } dirs_to_check = [ '~/projects/personal', '~/projects/work', ] for dir in dirs_to_check: for i in Path(dir).expanduser().iterdir(): if i.name in ['.git', '.DS_Store']: continue if query: if query.lower() not in i.name.lower(): continue data['items'].append({ 'title': i.name, 'subtitle': f"Open: {str(i)}", 'arg': str(i) }) sys.stdout.write(json.dumps(data))
  2. Hanks Stephen! Is it monitoring the main branch? Or when ever I release a new tag?
  3. That was fast, thank you! I am curious how do updates work? I doubt this workflow will need many updates. But when they do how do I (or you) push them?
  4. Thank you Vitor - I think I have it fixed now: https://github.com/SamEdwardes/alfred-workflow-toggle-stage-manager
  5. Thankyou @vitor and @sepulchra for the feedback I have made the suggested changes. Can you please take a second look? https://github.com/SamEdwardes/alfred-workflow-toggle-stage-manager
  6. A Workflow to toggle Stage Manager on and off: https://github.com/SamEdwardes/alfred-workflow-toggle-stage-manager I welcome any feedback. This is the first Workflow I have attempted to share, so please let me know what if anything needs to be changed.
×
×
  • Create New...