diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 0c4de18..4a42bde 100644 --- a/config.def.h +++ b/config.def.h @@ -1,5 +1,5 @@ /* - * (C) 2013-2024 by Christian Hesse <mail@eworm.de> + * (C) 2013-2025 by Christian Hesse <mail@eworm.de> * * 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 @@ -19,11 +19,14 @@ #ifndef _CONFIG_H #define _CONFIG_H -/* this is the time to sleep between printing characters */ -#define SLEEPTIME 1 +/* this is the time to sleep (in milli-seconds) between printing characters */ +#define SLEEPTIME 1000 + +/* this is the number of line between banner appears */ +#define BANNERCONST 20 /* some text to be printed */ -#define URL "https://github.com/eworm-de/nullshell" +#define URL "https://nullshell.eworm.de/" #define BANNER "Do-nothing-loop by nullshell " VERSION ",\n" \ "compiled on " __DATE__ " " __TIME__ ".\n" \ "Visit homepage: " URL "\n" |