diff options
| author | Anser <rostgans@tutamail.com> | 2026-08-12 00:47:59 +0200 |
|---|---|---|
| committer | Anser <rostgans@tutamail.com> | 2026-08-12 00:47:59 +0200 |
| commit | d195f0a76a3ce64761958f7d33ccbdbac3844fec (patch) | |
| tree | 5dd884d5a4ba600704288e316867ea94dcceb59c /src/cfetch.c | |
| parent | dc31d5c3d4d329ddae97d93b41869c96b5f97b2f (diff) | |
trying to workout how to get the maxline width
Diffstat (limited to 'src/cfetch.c')
| -rw-r--r-- | src/cfetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cfetch.c b/src/cfetch.c index 1a71f2c..caabbc9 100644 --- a/src/cfetch.c +++ b/src/cfetch.c @@ -21,14 +21,14 @@ int main(void) { system_info_t info = { 0 }; // set default artwork - int art_logo = 0; + int art_logo = 5; // set systeminformation // use // to uncomment or comment get_os(&info); get_memory(&info); get_cpu(&info); - //print_ascii_art(&info, art_logo); + print_ascii_art(&info, art_logo); return 0; } |
