Add runtime configuration and a workaround for wrapped text
Signed-off-by: 0xf8 <0xf8.dev@proton.me>
This commit is contained in:
parent
d852c1c4be
commit
ce1f74886d
@ -11,3 +11,7 @@ OR
|
|||||||
|
|
||||||
## install
|
## install
|
||||||
`install -m755 rbtext /usr/bin`
|
`install -m755 rbtext /usr/bin`
|
||||||
|
|
||||||
|
## runtime configuration
|
||||||
|
This is done by setting environment variables
|
||||||
|
- `RBTEXT_FULLSCREEN` (default: Enabled) - Clear screen every print (useful for text that will wrap)
|
53
rbtext.c
53
rbtext.c
@ -2,27 +2,42 @@
|
|||||||
|
|
||||||
Copyright 2022-2023 0xf8.dev@proton.me
|
Copyright 2022-2023 0xf8.dev@proton.me
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU General Public License as published by the Free Software
|
||||||
|
Foundation, either version 3 of the License, or (at your option) any later
|
||||||
|
version.
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
You should have received a copy of the GNU General Public License along with
|
||||||
|
this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
// How many milliseconds the program will wait until the next print ( DEFAULT = 100 )
|
// How many milliseconds the program will wait until the next print ( DEFAULT =
|
||||||
|
// 100 )
|
||||||
#define CONF_SLEEP_TIMEMS (long)100
|
#define CONF_SLEEP_TIMEMS (long)100
|
||||||
// How many seconds (in addition to millisecond above) the program will wait ( DEFAULT = 0 )
|
// How many seconds (in addition to millisecond above) the program will wait (
|
||||||
|
// DEFAULT = 0 )
|
||||||
#define CONF_SLEEP_TIMESEC (time_t)0
|
#define CONF_SLEEP_TIMESEC (time_t)0
|
||||||
// How many times a color should be shown before switching to the next ( DEFAULT = 2 )
|
// How many times a color should be shown before switching to the next ( DEFAULT
|
||||||
|
// = 2 )
|
||||||
#define CONF_COLOR_LAG 2
|
#define CONF_COLOR_LAG 2
|
||||||
|
|
||||||
|
// Don't set to 0
|
||||||
|
// Disabled = -1
|
||||||
|
// Enabled = 1
|
||||||
|
// int FLAG_name = default;
|
||||||
|
int FLAG_FULLSCREEN = 1;
|
||||||
|
|
||||||
// RICERS:
|
// RICERS:
|
||||||
// To add colors, simply add the color (according to the format below) to COLORS
|
// To add colors, simply add the color (according to the format below) to COLORS
|
||||||
@ -52,13 +67,28 @@ void genColors(char *s) {
|
|||||||
free(cstr);
|
free(cstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_flag(int *flag, const char *env) {
|
||||||
|
char *e = getenv(env);
|
||||||
|
if (e != NULL) {
|
||||||
|
int v = atoi(e);
|
||||||
|
|
||||||
|
if (v == 0)
|
||||||
|
return;
|
||||||
|
*flag = v;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
if (argc < 2) {
|
if (argc < 2) {
|
||||||
// [ERROR] No arguments given. USAGE: ... <text>
|
// [ERROR] No arguments given. USAGE: ... <text>
|
||||||
printf("\e[1;31m[ERROR]\e[0m No arguments given.\n\tUSAGE: \e[34m%s \e[33m<text>\e[0m\n",argv[0]);
|
printf("\e[1;31m[ERROR]\e[0m No arguments given.\n\tUSAGE: \e[34m%s "
|
||||||
|
"\e[33m<text>\e[0m\n",
|
||||||
|
argv[0]);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
set_flag(&FLAG_FULLSCREEN, "RBTEXT_FULLSCREEN");
|
||||||
|
|
||||||
uint reqSize = 0;
|
uint reqSize = 0;
|
||||||
for (int i = 1; i < argc; i++) {
|
for (int i = 1; i < argc; i++) {
|
||||||
reqSize += strlen(argv[i]);
|
reqSize += strlen(argv[i]);
|
||||||
@ -75,9 +105,14 @@ int main(int argc, char **argv) {
|
|||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct timespec rem, req = {CONF_SLEEP_TIMESEC, CONF_SLEEP_TIMEMS*1000*1000};
|
struct timespec rem,
|
||||||
|
req = {CONF_SLEEP_TIMESEC, CONF_SLEEP_TIMEMS * 1000 * 1000};
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
printf("\r\e[2K");
|
if (FLAG_FULLSCREEN == 1)
|
||||||
|
printf("\e[2J\e[f");
|
||||||
|
else
|
||||||
|
printf("\r");
|
||||||
genColors(text);
|
genColors(text);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
nanosleep(&req, &rem);
|
nanosleep(&req, &rem);
|
||||||
|
Loading…
Reference in New Issue
Block a user