Jump to content

buraktuyan

Member
  • Posts

    6
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Thanks
    buraktuyan reacted to vitor in Google Drive — List File Stream contents from Google Drive   
    Language shouldn’t make a difference and I can’t reproduce.

    The problem likely lies somewhere else. I would need the information asked in the second post, plus access to your cache (Library/Caches/com.runningwithcrayons.Alfred/Workflow Data/com.alfredapp.googledrive/cache.db) to test, but you may not be comfortable giving that.
     
     
    I don’t use Google Drive so my knowledge here is limited, but I didn’t find a way to programatically do that (being available on right-click is a wholly separate thing).
     
     
    You mean like this (press ⇧↵ on the result)?
  2. Thanks
    buraktuyan reacted to vitor in Google Drive — List File Stream contents from Google Drive   
    Setup

    Set your Google Drive’s location in the Workflow’s Configuration.

    Usage

    Search the contents of your Google Drive via the gd keyword. Filter for folders only with gdf. Fallback Searches are included.




    ↩: Open. ⌥↩: Reveal in Finder. ⇧↩: Search on Google Drive’s website. You’ll be asked to build the cache on the first run. A notification will show when it’s ready. The more files you have, the longer the wait. A macOS launchd agent will be loaded to do it daily. An immediate cache rebuild can be forced with ⌘⌥⌃↩.

    The Universal Actions make it straightforward to copy and move files to a Google Drive folder.



    To report a problem, run !gddiagnostic.

    ⤓ Install on the Alfred Gallery | Source
     
  3. Like
    buraktuyan got a reaction from cands in Search Apple/iCloud Notes   
    It works great for me without any issues and without any manual changes to the code. Thanks a LOT! 🙂👍

    And I liked the new fallbackCreateNew and fallbackSearchBodies functions -- the second one already made my life easier. 👌
  4. Like
    buraktuyan got a reaction from sballin in Search Apple/iCloud Notes   
    It works great for me without any issues and without any manual changes to the code. Thanks a LOT! 🙂👍

    And I liked the new fallbackCreateNew and fallbackSearchBodies functions -- the second one already made my life easier. 👌
  5. Like
    buraktuyan reacted to sballin in Search Apple/iCloud Notes   
    Here is a pre-release version where characters like that should be handled properly: https://github.com/sballin/alfred-search-notes-app/files/6168245/Search.Notes.zip
     
    Let me know if you encounter any issues!
  6. Like
    buraktuyan reacted to sballin in Search Apple/iCloud Notes   
    You could create a new "Run NSAppleScript" action with the following code:
     
    on alfred_script(q) tell application "Notes" -- Show user requested note -- Get note id which is first item in q set noteID to text 1 thru ((offset of "?" in q)-1) of q show note id noteID in default account show note id noteID in default account -- Click menu Window -> Float Selected Note tell application "System Events" to tell process "Notes" to click menu item 11 of menu 7 of menu bar 1 end tell end alfred_script  
×
×
  • Create New...