repo.or.cz
/
kdepim.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Waste less space in nested layouts.
[kdepim.git]
/
kalarm
/
kalarm-2.1.5-general.pl
blob
760ba481b65ef21559b5cca775bbf101f3ca1959
1
#!/usr/bin/perl -w
2
# Convert pre-2.1.5 General section settings.
3
4
use
strict
;
5
6
while
(<>)
7
{
8
if
(
/^CmdXTerm=konsole/
) {
9
s/ -T / -p tabtitle=/
;
10
print
"[General]
\n
"
;
11
print
$_
;
12
}
13
}