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 3b66959..7f8b8ee 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");