Jump to content

Enhorn

Member
  • Posts

    26
  • Joined

  • Last visited

Everything posted by Enhorn

  1. As far as I can see, this workflow works as intended with Spotify as well. By just adding com.spotify.client to the list of player identifiers, all workflow actions works with Spotify. def player_running? %w{com.apple.itunes com.swinsian.swinsian com.spotify.client}.each do |player| return player if %x{osascript -e 'get running of application id "#{player}"'}.chomp == 'true' end end
  2. What kind of Xcode project template is the instructions done with?
  3. This looks amazing and almost to good to be true, but the download link doesn't work for me. :-(
  4. Nice, the only thing I want to add is HTML unescaping. :-) import HTMLParser h = HTMLParser.HTMLParser() h.unescape(q['title'])
  5. Here comes the TestFlight workflow we all have been waiting for. :-) You can list your team members, invites (with invite status) and apps. (Apps require the Area 51 feature that can be enabled here). You can send an invitation to a given email directly from Alfred, and you can copy your API token. To setup after installation, right-click the workflow and select "Show in Finder". Open the file "login.sh". Enter your login info into the variables "USERNAME" and "PASSWORD". Done! Download it here
  6. Haha, how wonderfully meta. :-D Works great. :-)
  7. BTW, changing the delete command to move the file/folder to the trash is mv {query} ~/.Trash
  8. I think moving the file to the trash instead of deleting it would be better, but other than that it's a great workflow. :-)
  9. Same problem here. I guess that there is some problem with the XML that is returned to Alfred? I get this error message in the console: 2013-01-18 15:58:42,943 Alfred 2[30643]: [ERROR] Script XML Parse Error occured Error Domain=NSXMLParserErrorDomain Code=5 "The operation couldn’t be completed. (NSXMLParserErrorDomain error 5.)"
  10. Does it have to be an IP address in the URL? I have a domain name for my computer at home running Transmission that I'm trying this workflow with, and I'm not getting any results. I have set $url, $username, $password and $session_id
  11. I found out why this didn't work for me. "printf $HOME" results in my home folder path with a trailing "%". If I changed the home path line to "$home = str_replace('%','',exec('printf $HOME'));" the workflow started to work for me. I use ZSH as my standard shell, perhaps that is whats causing it, because I get no trailing "%" when i start BASH and run the command through that.
  12. Can't seem to get the syntax correctly. Should I write "rem Remind me @ 14:50" in Alfred to make a reminder today at 2:50 PM today?
  13. Not getting any results. Is it restricted to the inbox? As I have a inbox zero right now, so that could explain it in that case. The account in question is an Exchange account, if that makes any difference.
  14. Cool. It is indeed easy to add more languages. :-D
  15. It's not added as a workflow after I rename the zip file to "filename.alfredworkflow". Am I missing something? :-)
  16. Something I would like is if the icon parameter could take a URL to an image and load it asynchronously. Been working on an extension of the spotify workflow and it's search, and have Alfred showing album covers in the results, but would be nice not having to download and store the thumbs before returning the search results to Alfred.
×
×
  • Create New...