Skip to content

Commit

Permalink
Updating CLI header
Browse files Browse the repository at this point in the history
  • Loading branch information
mjovanc committed May 17, 2023
1 parent 07707a4 commit 661fdfc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions config/cli_header.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@

#include "version.h"

void print_header(WINDOW* header_win)
void print_header(WINDOW *header_win)
{
wattron(header_win, COLOR_PAIR(2));
wattron(header_win, COLOR_PAIR(2));
mvwprintw(header_win, 0, 0,
" __ __ _ ________ ____\n"
" / / / __ ______ _(_____ / ____/ / / _/\n"
" / /_/ / / / / __ `/ / __ \\ / / / / / /\n"
" / __ / /_/ / /_/ / / / / / / /___/ /____/ /\n"
" /_/ /_/\\__,_/\\__, /_/_/ /_/ \\____/_____/___/\n"
" /____/\n\n");
"oooo oooo ooooo ooooooo oooooooooo ooooooooo\n"
"8888o 88 888 o888 888o 888 888 888 88o\n"
"88 888o88 888 888 888 888oooo88 888 888\n"
"88 8888 888 888o o888 888 88o 888 888\n"
"o88o 88 888 88ooo88 o888o 88o8 o888ooo88\n"
" 8o888\n\n");

wattron(header_win, COLOR_PAIR(1));
mvwprintw(header_win, 7, 0, " %s v%s\n", PROJECT_NAME, PROJECT_VERSION);
Expand All @@ -56,4 +56,4 @@ void print_header(WINDOW* header_win)
mvwprintw(header_win, 15, 0, " %s\n\n", PROJECT_LICENSE_URL);
}

#endif //CONFIG_CLI_HEADER_H
#endif//CONFIG_CLI_HEADER_H
2 changes: 1 addition & 1 deletion config/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

#define PROJECT_NAME "njord"
#define PROJECT_SITE "https://www.kryptokrona.org"
#define PROJECT_COPYRIGHT "Copyright 2022-2023, Kryptokrona"
#define PROJECT_COPYRIGHT "Copyright 2022-2023, The Kryptokrona Developers"
#define PROJECT_AUTHOR "Marcus Cvjeticanin"
#define PROJECT_LICENSE_URL "https://github.com/kryptokrona/njord/blob/master/LICENSE"
#define APP_VER_MAJOR 0
Expand Down

0 comments on commit 661fdfc

Please sign in to comment.