summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-22 18:28:00 -0400
committerJune McEnroe <june@causal.agency>2018-07-22 18:28:00 -0400
commit8a1de515f659ea84ae1cddbe341434e58579a085 (patch)
treeeab1840734a5a37c0ae7a393497e43d7796dbfa3 /bin
parentAdd -m option to glitch (diff)
downloadsrc-8a1de515f659ea84ae1cddbe341434e58579a085.tar.gz
src-8a1de515f659ea84ae1cddbe341434e58579a085.zip
Fix scheme indentation
Diffstat (limited to '')
-rw-r--r--bin/scheme.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index e85b7dbb..402a12c3 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -26,23 +26,23 @@
 #include <zlib.h>
 
 static const struct Hsv { double h, s, v; }
-R = {   0.0, 1.0, 1.0 },
-  Y = {  60.0, 1.0, 1.0 },
-  G = { 120.0, 1.0, 1.0 },
-  C = { 180.0, 1.0, 1.0 },
-  B = { 240.0, 1.0, 1.0 },
-  M = { 300.0, 1.0, 1.0 };
+	R = {   0.0, 1.0, 1.0 },
+	Y = {  60.0, 1.0, 1.0 },
+	G = { 120.0, 1.0, 1.0 },
+	C = { 180.0, 1.0, 1.0 },
+	B = { 240.0, 1.0, 1.0 },
+	M = { 300.0, 1.0, 1.0 };
 
 static struct Hsv x(struct Hsv o, double hd, double sf, double vf) {
 	return (struct Hsv) {
 		fmod(o.h + hd, 360.0),
-			fmin(o.s * sf, 1.0),
-			fmin(o.v * vf, 1.0),
+		fmin(o.s * sf, 1.0),
+		fmin(o.v * vf, 1.0),
 	};
 }
 
+enum { BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE };
 struct Ansi {
-	enum { BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE };
 	struct Hsv dark[8];
 	struct Hsv light[8];
 };
IC and clean up includesJune McEnroe 2020-08-15Reap childrenJune McEnroe 2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe 2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe 2020-08-14Switch to timespec for timeoutsJune McEnroe 2020-08-14Implement serviceStartJune McEnroe 2020-08-14Flesh out Service structJune McEnroe 2020-08-14Build environment for servicesJune McEnroe 2020-08-14Implement spawntab parsingJune McEnroe 2020-08-14Open syslog, daemonize, write PIDJune McEnroe 2020-08-14Implement user and group lookupJune McEnroe 2020-08-14Add install targetJune McEnroe 2020-08-14Add spawnd skeletonJune McEnroe