]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
term2gui.pl: read from STDIN
authorSimon Ruderich <simon@ruderich.org>
Tue, 19 Aug 2014 14:13:08 +0000 (16:13 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 19 Aug 2014 14:13:08 +0000 (16:13 +0200)
term2gui.pl

index 6da84f48ec87297c8865cd886c07504c257af635..274ad2cc7d37fc98194344d447d08bfaeca52371 100755 (executable)
@@ -3,7 +3,7 @@
 # Convert a terminal color scheme for 256 color terminals to a GUI color
 # scheme by adding the appropriate gui* options.
 
-# Copyright (C) 2012  Simon Ruderich
+# Copyright (C) 2012-2014  Simon Ruderich
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -281,7 +281,7 @@ sub xterm2rgb {
 }
 
 
-while (<>)) {
+while (<STDIN>) {
     # Only handle lines with highlight commands.
     if (/^\s*\bhi(?:ghlight)?\b/) {
         foreach my $setting (m/\bcterm(?:fg|bg)?=\S+/g) {