diff options
| author | Anser <rostgans@tutamail.com> | 2026-08-13 15:28:47 +0200 |
|---|---|---|
| committer | Anser <rostgans@tutamail.com> | 2026-08-14 10:44:28 +0200 |
| commit | 9bfaf4dd363429757754d9934ca38fad4ef7dc0a (patch) | |
| tree | c13a7148dfd96178481744368dd0d29a6bdc033d /src/cfetch.c | |
| parent | d195f0a76a3ce64761958f7d33ccbdbac3844fec (diff) | |
changed get_os to get_kernel, it now uses the system_info_t struct to store and display the kernel information. Same with get_cpu.
Diffstat (limited to 'src/cfetch.c')
| -rw-r--r-- | src/cfetch.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/cfetch.c b/src/cfetch.c index caabbc9..66d115d 100644 --- a/src/cfetch.c +++ b/src/cfetch.c @@ -25,10 +25,22 @@ int main(void) { // set systeminformation // use // to uncomment or comment - get_os(&info); - get_memory(&info); + // get_os: Ubuntu <version> + // get_host: Laptop name? Precision 7680 + get_kernel(&info); + // get_uptime + // get_packages + // get_shell + // get_resolution + // get_de + // get_wm + // get_terminal get_cpu(&info); + //get_gpu + get_memory(&info); + print_ascii_art(&info, art_logo); + // get_colours ? return 0; } |
