Created
January 15, 2014 01:41
-
-
Save kristianfreeman/8429296 to your computer and use it in GitHub Desktop.
imessage is garbage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run this shit in ~/Library/Messages | |
@last = "" | |
while true do | |
@mine = false | |
@new = `sqlite3 chat.db 'select text, is_from_me from message order by date desc limit 1;'` | |
@from = @new.split("|").last.chomp | |
@mine = true if @from == "1" | |
@new = @new.split("|").first | |
unless @last == @new.split("|").first | |
@last = @new | |
if @mine | |
@message = "me: " | |
else | |
@message = "other: " | |
end | |
@message += @last | |
puts @message | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment