aboutsummaryrefslogtreecommitdiff
path: root/src/cfetch.c
diff options
context:
space:
mode:
authorAnser <rostgans@tutamail.com>2026-08-12 00:47:59 +0200
committerAnser <rostgans@tutamail.com>2026-08-12 00:47:59 +0200
commitd195f0a76a3ce64761958f7d33ccbdbac3844fec (patch)
tree5dd884d5a4ba600704288e316867ea94dcceb59c /src/cfetch.c
parentdc31d5c3d4d329ddae97d93b41869c96b5f97b2f (diff)
trying to workout how to get the maxline width
Diffstat (limited to 'src/cfetch.c')
-rw-r--r--src/cfetch.c4
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;
}