I hacked together an OS X app that puts ಠ_ಠ in your status bar. If you click it, ಠ_ಠ gets put on your clipboard. What a world!
It looks like this at the top of your screen:
Download it here (tested in OS X 10.9)
You can also really easily build it yourself if you have Xcode.
NSString *theLook = @"ಠ_ಠ";
@implementation LODAppDelegate
{
NSStatusItem *statusItem;
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];
statusItem.title = theLook;
statusItem.highlightMode = YES;
statusItem.target = self;
statusItem.action = @selector(statusItemClicked);
statusItem.doubleAction = @selector(statusItemDoubleClicked);
}
- (void)statusItemClicked
{
NSPasteboard *pb = [NSPasteboard generalPasteboard];
[pb clearContents];
[pb setData:[theLook dataUsingEncoding:NSUTF8StringEncoding] forType:NSPasteboardTypeString];
}
- (void)statusItemDoubleClicked
{
[NSApp performSelector:@selector(terminate:) withObject:nil afterDelay:0.0];
}