Add console command for saturation
authorTomas Wenström <tomas.wenstrom@gmail.com>
Sun, 11 Aug 2019 10:51:00 +0000 (12:51 +0200)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Sun, 11 Aug 2019 10:51:00 +0000 (12:51 +0200)
src/kaka/cakelight/Console.java

index 43ebd13..0d45b7f 100644 (file)
@@ -52,6 +52,11 @@ public class Console extends Thread {
                    config.gamma = Double.parseDouble(split[1]);
                    System.out.println("setting gamma to " + config.gamma);
                    break;
+               } else if (input.matches("s|saturation\\s+[0-9.]+")) {
+                   String[] split = input.split("\\s+");
+                   config.video.saturation = Double.parseDouble(split[1]);
+                   System.out.println("setting saturation to " + config.video.saturation);
+                   break;
                }
             } catch (IOException e) {
                 System.out.println("Error reading from command line");