Skip to content

Instantly share code, notes, and snippets.

@saitoha
Created April 28, 2012 12:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saitoha/2518626 to your computer and use it in GitHub Desktop.
Save saitoha/2518626 to your computer and use it in GitHub Desktop.
creeping chaos in the title bar.
#! /usr/bin/env perl
# -*- coding:utf-8 -*-
if (fork()) {
exit;
} else {
$| = 1;
while(1) {
print "\e]2; (」・ω・)」うー! \e\\";
sleep 1;
print "\e]2;(/・ω・)/にゃー \e\\";
sleep 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment