You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/konversation-0.20-customfon...

22 lines
293 B

#! /usr/bin/perl
use strict;
while (<>)
{
chomp;
if ($_ =~ /^TextFont/)
{
print("CustomTextFont=true\n");
}
if ($_ =~ /^ListFont/)
{
print("CustomListFont=true\n");
}
if ($_ =~ /^TabFont/)
{
print("CustomTabFont=true\n");
}
}