<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -16,8 +16,9 @@ class checker ( threading.Thread ):
 	api=None
 	i=0
 	def __init__(self,username,password):
-		self.growl = growler.growler()
-		self.growl.notify(self.growl.notifications[0],'Twitminal','estarteando esta verga!\n')
+		self.notifiers=[]
+		growl = growler.growler()
+		self.notifiers.append(growl)
 		self.username = username
 		self.password=password
 		self.api = twitter.Api(self.username,self.password)
@@ -34,7 +35,8 @@ class checker ( threading.Thread ):
 					self.last = d.strftime(&quot;%a, %d %b %Y %H:%M:%S -0430&quot;)
 					temp=&quot;&quot;
 					for f in friendsline:
-						self.growl.notify(self.growl.notifications[0],'Twitminal',f.GetUser().screen_name+&quot;: &quot;+f.GetText())
+						for n in self.notifiers:
+							n.send('Twitminal',f.GetUser().screen_name,f.GetText())
 						#temp+=f.GetUser().screen_name+&quot;: &quot;+f.GetText()+&quot;\n&quot;
 					#self.growl.notify(self.growl.notifications[0],'Twitminal',temp)
 				self.i=(self.i+1)%18</diff>
      <filename>checker.py</filename>
    </modified>
    <modified>
      <diff>@@ -6,5 +6,8 @@ class growler(GrowlNotifier):
 		self.applicationName = 'Twitminal' 
 		self.applicationIcon = Image.imageWithIconForApplication('/Applications/Utilities/Console.app') 
 		self.notifications = ['Twitminal msg'] 
-		self.register() 
+		self.notify(self.notifications[0],'Twitminal','estarteando esta verga!\n')
+		self.register()
+	def send(self,app,who,what):
+		self.notify(self.notifications[0],app,who+&quot;: &quot;+what)
 </diff>
      <filename>growler.py</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,9 @@ from time import localtime,asctime,sleep
 username=''
 password=''
 mychecker=None
-Yellow =0x23
+esc = '%s['%chr(27)
+reset = '%s0m'%esc
+
 
 def printHelpMenu():
 	print &quot;Twitminal- by Charz&quot;
@@ -31,7 +33,7 @@ def handler(signum, frame):
 	print &quot;Bye bye&quot;
 	sys.exit()
 
-print &quot;Welcome! Twitminal, minimal twitter client with growl notifications!\nBy Charz! (Charles Romestant)&quot;
+print reset,&quot;Welcome! Twitminal, minimal twitter client with growl notifications!\nBy Charz! (Charles Romestant)&quot;
 print &quot;cromestant@gmail.com\n\n&quot;
 print &quot;Twitter username: &quot;
 username = sys.stdin.readline()[:-1]</diff>
      <filename>twitminal.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>32184d6a5c897f0b8bff86a1739bd792db7cdbce</id>
    </parent>
  </parents>
  <author>
    <name>Charles Romestant</name>
    <email>cromestant@gmail.com</email>
  </author>
  <url>http://github.com/cromestant/twitminal/commit/b442277a0cd03d8bfbdc423d331173023b045315</url>
  <id>b442277a0cd03d8bfbdc423d331173023b045315</id>
  <committed-date>2009-02-25T11:59:42-08:00</committed-date>
  <authored-date>2009-02-25T11:59:42-08:00</authored-date>
  <message>semi-pluggin arquitecture</message>
  <tree>8c6b3fad71f90c8d72205ab550e4472d9d526379</tree>
  <committer>
    <name>Charles Romestant</name>
    <email>cromestant@gmail.com</email>
  </committer>
</commit>
