Adium Controls for Alfred |
|
Submitted By Joel Gillman (jgillman) |
DescriptionA set of AppleScripts so you can set your chat status from Alfred App. You will need Alfred and the Powerpack to use this.Installation To install Adium Controls for Alfred double click on each of the extension files: - Adium Controls - Custom Away.alfredextension - Adium Controls - Go Offline.alfredextension - Adium Controls - Go Online.alfredextension - Adium Controls - Set Available.alfredextension How to use Once installed with Alfred you can run the following commands on :: Set all appropriate accounts on "Online" and open Adium if not already open Download Adium Controls Source on Github Changes1.1.0 - February 27, 2012
1.0.0 - January 31, 2012
CommentsYou can reply to individual comments by clicking the "Reply" link next to each. # by karineko on 02/12/12 at 15:45:32This is great. Are you planing to add more status like busy, dnd, on the phone, etc besides the generic away one?
# by silverhand31 on 04/16/13 at 06:57:45Thank you! Register to comment here :D
Hope more update come soon. # by mareoraft on 09/13/13 at 19:48:52I am having an issue with the installation. When I first opened the file I did "open with TextWrangler" to see what it looked like. But this ruined the double-clicking installation. So then I tried "open with Alfred 2.app", but this didn't work either. Thank you so much for your help.
# by mareoraft on 09/14/13 at 18:13:14Okay, I found this workflow (newer version?) which worked just the same. I made some edits to the applescript to make Adium automatically hide when I go offline:
on alfred_script(q) tell application "Finder" set visible of process "Adium" to false end tell try tell application "Adium" to go offline on error beep end try end alfred_script Also, I changed the "back" applescript to SHOW the application as opposed to activating it, to make it execute faster. on alfred_script(q) try tell application "Adium" to go available on error beep end try tell application "System Events" tell process "Adium" set frontmost to true end tell end tell end alfred_script You can use these examples to similarly edit your "online" and "away" applescripts as you please. You can add the line if application "Adium" is not running then tell application "Adium" to activate to make the application open in the case that it is not running. This is still faster than using the activate command. # by mareoraft on 09/14/13 at 18:16:35Sorry I forgot to post the link. I found it here:
https://github.com/alanmoo/Duck-Butler...ow?raw=true There is also a guy who is making more features here: http://www.alfredforum.com/topic/1274...m-workflow/ Post a New CommentYou must be logged in to post comments. |
# by iiiGerardoiii on 02/09/12 at 05:49:25