diff options
-rwxr-xr-x | control-center | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/control-center b/control-center index 1b4f0109..423252ff 100755 --- a/control-center +++ b/control-center @@ -68,15 +68,12 @@ my %option_values; $option_values{use_long_dscr} = text2bool($h{USE_LONG_DESCRIPTIONS}); $option_values{show_log} = text2bool($h{LOGS}); my $theme = $h{THEME}; -$theme = $1 if "@ARGV" =~ /--theme (\w+)/; my $program; -foreach (@ARGV) { - $program = $1 if /--start-with=(.*)/; -} - my ($i, $geometry); foreach (@ARGV) { $i++; + $theme = $1 if /--theme (\w+)/; + $program = $1 if /--start-with=(.*)/; if (/^--geometry$/) { $geometry = splice @ARGV, $i, 1; last; |