From 5bc0221ae6d980b28b07de26ab1700da796e5d21 Mon Sep 17 00:00:00 2001 From: Mihai Basa Date: Tue, 10 Sep 2013 16:19:50 +0300 Subject: [PATCH] Allow UTF8 special characters as timeout markers. --- tabbedex | 1 + 1 file changed, 1 insertion(+) diff --git a/tabbedex b/tabbedex index ada0e2f..5eae53f 100755 --- a/tabbedex +++ b/tabbedex @@ -388,6 +388,7 @@ sub on_init { my $timeouts = $self->my_resource ("tabbar-timeouts"); $timeouts = '16:.:8:::4:+' unless defined $timeouts; + $timeouts = decode("utf8", $timeouts); if ($timeouts ne '') { my @timeouts; while ($timeouts =~ /^(\d+):(.)(?::(.*))?$/) {