Skip to content

Instantly share code, notes, and snippets.

@almccon
Created March 20, 2014 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save almccon/9673165 to your computer and use it in GitHub Desktop.
Save almccon/9673165 to your computer and use it in GitHub Desktop.
AppleScript for Adium to automatically join IRC rooms
-- Based on http://kb.mit.edu/confluence/display/mitcontrib/Configure+Adium+to+automatically+join+Group+Chat+rooms+on+startup
tell application "Adium"
GetURL "irc://irc.freenode.org/openstreetmap"
GetURL "irc://irc.freenode.org/mapbox"
GetURL "irc://irc.freenode.org/leaflet"
GetURL "irc://irc.freenode.org/mapnik"
GetURL "irc://irc.freenode.org/qgis"
GetURL "irc://irc.freenode.org/postgis"
GetURL "irc://irc.freenode.org/cugos"
GetURL "irc://irc.freenode.org/osgeo"
GetURL "irc://irc.freenode.org/maptime"
end tell
-- Based on http://kb.mit.edu/confluence/display/mitcontrib/Configure+Adium+to+automatically+join+Group+Chat+rooms+on+startup
tell application "Adium"
GetURL "irc://irc.oftc.net/osm"
GetURL "irc://irc.oftc.net/osm-dev"
GetURL "irc://irc.oftc.net/hot"
GetURL "irc://irc.oftc.net/osm-us"
GetURL "irc://irc.oftc.net/osm-ca"
GetURL "irc://irc.oftc.net/publiclab"
end tell
-- Based on http://kb.mit.edu/confluence/display/mitcontrib/Configure+Adium+to+automatically+join+Group+Chat+rooms+on+startup
run script ("/Users/alan/Dropbox/bin/adium-group-chat-freenode.scpt" as POSIX file)
run script ("/Users/alan/Dropbox/bin/adium-group-chat-oftc.scpt" as POSIX file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment