From e2721d511abab891e138bc87ab6b6cf2a90bdf19 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tomas=20Wenstr=C3=B6m?= Date: Sun, 24 Nov 2019 23:07:39 +0100 Subject: [PATCH] Bugfix - match arguments --- src/kaka/cakelight/Console.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/kaka/cakelight/Console.java b/src/kaka/cakelight/Console.java index 3b66959..7f8b8ee 100644 --- a/src/kaka/cakelight/Console.java +++ b/src/kaka/cakelight/Console.java @@ -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"); -- 2.11.0