tUpdate LICENSE and README - skroll - scroll a text to stdout
(HTM) git clone git://z3bra.org/skroll
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit d56df56a0ea399d659541410faf322619372b706
(DIR) parent d6561c6325e60a026b5a2462675764e7af8dfa5c
(HTM) Author: z3bra <contactatz3bradotorg>
Date: Wed, 7 Jun 2017 12:19:00 +0200
Update LICENSE and README
Switch to ISC License ('cause I did WTF I wanted), and update the
README file gor better clarity.
Diffstat:
M LICENSE | 27 +++++++++++++--------------
M README | 23 +++++++++++++++++------
M skroll.c | 17 -----------------
3 files changed, 30 insertions(+), 37 deletions(-)
---
(DIR) diff --git a/LICENSE b/LICENSE
t@@ -1,14 +1,13 @@
- DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
- Version 2, December 2004
-
- Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
-
- Everyone is permitted to copy and distribute verbatim or modified
- copies of this license document, and changing it is allowed as long
- as the name is changed.
-
- DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. You just DO WHAT THE FUCK YOU WANT TO.
-
+Copyright (c) 2014-2017 Willy Goiffon <willyatmailoodotorg>
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
(DIR) diff --git a/README b/README
t@@ -1,14 +1,21 @@
-┏━┓╻┏ ┏━┓┏━┓╻ ╻
-┗━┓┣┻┓┣┳┛┃ ┃┃ ┃
-┗━┛╹ ╹╹┗╸┗━┛┗━╸┗━╸
- -- by z3bra
-===========================
+skroll
+======
Skroll is a small utility that you can use to make a text scroll.
Pipe text to it, and it will scroll a given number of letters from right to
left.
-You can pass a few options to it, to change its behavior:
+Installation
+------------
+As easy as 1,2,3! Build and install by issuing the following commands:
+
+ $ make
+ # make install
+
+Usage
+-----
+See the skroll(1) manpage for detailed usage. Here is a quick reference
+to get started using it:
# loop indefinitely
echo shblah | skroll -l
t@@ -18,3 +25,7 @@ You can pass a few options to it, to change its behavior:
# rotate letters every <x> seconds
echo shblah | skroll -d 0.25
+
+License
+-------
+ISC License. See LICENSE file for copyright and license details.
(DIR) diff --git a/skroll.c b/skroll.c
t@@ -1,20 +1,3 @@
-/*
- * DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
- * Version 2, December 2004
- *
- * Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
- *
- * Everyone is permitted to copy and distribute verbatim or modified
- * copies of this license document, and changing it is allowed as long
- * as the name is changed.
- *
- * DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
- * TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- *
- * 0. You just DO WHAT THE FUCK YOU WANT TO.
- *
- */
-
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>