irssi的提示脚本(转)

来源:互联网 发布:js设置浏览器缩放比例 编辑:程序博客网 时间:2024/05/17 02:11

复制以下内容保存为 pl结尾的文件

 

#转载

##
## Put me in ~/.irssi/scripts, and then execute the following in irssi:
##
##       /load perl
##       /script load notify
##
 
use strict;
use Irssi;
use vars qw($VERSION %IRSSI);
 
$VERSION = "0.01";
%IRSSI = (
    authors     => 'Luke Macken, Paul W. Frields',
    contact     => 'lewk@csh.rit.edu, stickster@gmail.com',
    name        => 'notify.pl',
    description => 'Use libnotify to alert user to hilighted messages',
    license     => 'GNU General Public License',
    url         => 'http://lewk.org/log/code/irssi-notify',
);
 
Irssi::settings_add_str('notify', 'notify_icon', 'gtk-dialog-info');
Irssi::settings_add_str('notify', 'notify_time', '5000');
 
sub notify {
    my ($server, $summary, $message) = @_;
 
    # Make the message entity-safe
    $message =~ s/&/&/g; # That could have been done better.
    $message =~ s/</&lt;/g;
    $message =~ s/>/&gt;/g;
    $message =~ s/'/&apos;/g;
 
    my $cmd = "EXEC - notify-send" .
    " -i " . Irssi::settings_get_str('notify_icon') .
    " -t " . Irssi::settings_get_str('notify_time') .
    " -- '" . $summary . "'" .
    " '" . $message . "'";
 
    $server->command($cmd);
}
 
sub print_text_notify {
    my ($dest, $text, $stripped) = @_;
    my $server = $dest->{server};
 
    return if (!$server || !($dest->{level} & MSGLEVEL_HILIGHT));
    my $sender = $stripped;
    $sender =~ s/^/<.([^/>]+)/>.+//1/ ;
    $stripped =~ s/^/<.[^/>]+/>.// ;
    my $summary = $dest->{target} . ": " . $sender;
    notify($server, $summary, $stripped);
}
 
sub message_private_notify {
    my ($server, $msg, $nick, $address) = @_;
 
    return if (!$server);
    notify($server, "私人消息来自:".$nick, $msg);
}
 
sub dcc_request_notify {
    my ($dcc, $sendaddr) = @_;
    my $server = $dcc->{server};
 
    return if (!$dcc);
    notify($server, "文件传送".$dcc->{type}." 来自:", $dcc->{nick});
}
 
Irssi::signal_add('print text', 'print_text_notify');
Irssi::signal_add('message private', 'message_private_notify');
Irssi::signal_add('dcc request', 'dcc_request_notify');

原创粉丝点击