]> www.dolda2000.com Git - kaka/cakelight.git/commitdiff
Bugfix - match arguments
authorTomas Wenström <tomas.wenstrom@gmail.com>
Sun, 24 Nov 2019 22:07:39 +0000 (23:07 +0100)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Sun, 24 Nov 2019 22:07:39 +0000 (23:07 +0100)
src/kaka/cakelight/Console.java

index 3b66959913a67cb0b3ff2afffd5573adf1c954a8..7f8b8eeb53954c9ad97e0036103a36e0ffc66c5a 100644 (file)
@@ -61,8 +61,9 @@ public class Console extends Thread {
                    String[] split = input.split("\\s+");
                    config.video.saturation = Double.parseDouble(split[1]);
                    System.out.println("setting saturation to " + config.video.saturation);
-               } else if (input.matches("(n|noise)")) {
+               } else if (input.matches("(n|noise)(\\s+[a-z0-9]+){2}")) {
                    TwoColorNoiseMode.getCommand().activate(cakelight, config, input.split("\\s+"));
+                   System.out.println("setting two-color noise mode");
                }
             } catch (IOException e) {
                 System.out.println("Error reading from command line");