From 48548e649cb79efe96265b3800955a96a570c77b Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 18 Oct 2021 21:53:54 -0400 Subject: Revert "Add shotty -t to animate (crudely) between snapshots" This reverts commit 0fc730ec8e058607b05185e1a36b22615ffbae40. It's mostly irrelevant to how shotty actually functions so I think it would be better done externally. Reverting just to keep the dumb JavaScript in history. --- bin/shotty.l | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) (limited to 'bin/shotty.l') diff --git a/bin/shotty.l b/bin/shotty.l index 93e7f0ee..3d1d50c0 100644 --- a/bin/shotty.l +++ b/bin/shotty.l @@ -507,9 +507,8 @@ int main(int argc, char *argv[]) { bool debug = false; bool size = false; bool hide = false; - int interval = 0; - for (int opt; 0 < (opt = getopt(argc, argv, "Bb:df:h:inst:w:"));) { + for (int opt; 0 < (opt = getopt(argc, argv, "Bb:df:h:insw:"));) { switch (opt) { break; case 'B': bright = true; break; case 'b': defaultBg = atoi(optarg); @@ -519,7 +518,6 @@ int main(int argc, char *argv[]) { break; case 'i': colors = true; break; case 'n': hide = true; break; case 's': size = true; - break; case 't': interval = atoi(optarg); break; case 'w': cols = atoi(optarg); break; default: return EX_USAGE; } @@ -561,25 +559,4 @@ int main(int argc, char *argv[]) { } if (hide) mode &= ~Cursor; if (!mc) html(); - - if (interval) { - printf( - Q( - - ), - interval - ); - } } -- cgit 1.4.1