blob: e9be4ff8e69ca063b716b8bd3687ea6bc8e43c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/usr/bin/perl -w
use strict;
# This script updates some configuration keys
# read the whole config file
my $currentGroup = "";
my %configFile;
while ( <> ) {
chomp; # eat the trailing '\n'
next if ( /^$/ ); # skip empty lines
next if ( /^\#/ ); # skip comments
if ( /^\[/ ) { # group begin
$currentGroup = $_;
next;
} elsif ( $currentGroup eq "[Behaviour]" and /^JumpToUnread/ ) {
my ($key,$value) = split /=/;
print "# DELETE $currentGroup$key\n";
if ( $value eq "true" ) {
print "[Behaviour]\nActionEnterFolder=SelectFirstUnreadNew\n";
}
else {
print "[Behaviour]\nActionEnterFolder=SelectFirstNew\n";
}
}
}
|