Jump to content

chrispoole

Member
  • Posts

    5
  • Joined

  • Last visited

Posts posted by chrispoole

  1. I think it’d be quite nice to be able to search with Alfred and have it search against the currently-open windows across all apps: file names, app name, etc.

     

    On hitting enter it would focus to that window, to act as a quick window switcher.

     

    Is there any functionality to do this that anyone knows (I can’t find it myself), or perhaps I should start writing some AppleScript…

  2. On 11/19/2013 at 4:23 PM, emilyobyrne said:

    I also got stuck in and added the note subject and text to the scope so it works just like Spotlight but specifically on Notes. 

     

    Do you still have this workflow? The original Dropbox link is now 404, but would be very handy.

  3. Perfect! I've used a bit of AppleScript I've been using with Emacs for years:

    on alfred_script(q)
    	tell application "Terminal"
    		try
    			if (count of windows) is 0 then
    				do script q
    			else
    				do script q in window 1
    			end if
    			activate
    		on error
    			beep
    		end try
    	end tell
    end alfred_script

    That works a treat: if I already have a Terminal window open it'll send the commands there, otherwise it'll create a new window.

×
×
  • Create New...