forked from nakidai/mycfetch
1
0
Fork 0
hiscfetch/mycfetch.c

67 lines
1.8 KiB
C
Raw Normal View History

#define _POSIX_C_SOURCE 200112L
2023-06-10 17:56:49 +03:00
#include <stdio.h>
2023-11-12 14:54:45 +03:00
#include <sys/utsname.h>
#include <unistd.h>
#include <time.h>
2023-11-15 20:56:56 +03:00
#include <string.h>
#include <stdbool.h>
2023-06-10 17:56:49 +03:00
2023-11-12 14:54:45 +03:00
#include "config.h"
2023-11-15 20:56:56 +03:00
#include "defs.h"
2023-11-12 14:54:45 +03:00
void getuptime(char *buffer, int max_length)
{
struct timespec uptime;
clock_gettime(CLOCK_BOOTTIME, &uptime);
int days = uptime.tv_sec / 86400;
int hours = uptime.tv_sec / 3600 % 24;
int minutes = uptime.tv_sec / 60 % 60;
int seconds = uptime.tv_sec % 60;
if (uptime.tv_sec < 60)
snprintf(buffer, max_length, "Up %d seconds", seconds);
else if (uptime.tv_sec < 3600)
snprintf(buffer, max_length, "Up %d minutes", minutes);
else if (uptime.tv_sec < 86400)
snprintf(buffer, max_length, "Up %d hours, %d minutes", hours, minutes);
else
snprintf(buffer, max_length, "Up %d days, %d hours, %d minutes", days, hours, minutes);
}
2023-06-10 17:56:49 +03:00
int main(int argc, char **argv)
{
char **art = arts[0].art, *name = argv[1];
int ret = 0;
if (name)
{
bool found = false;
for (int i = 0; i < sizeof(arts) / sizeof(*arts); ++i)
if (!strcmp(arts[i].name, name))
{ art = arts[i].art; found = true; break; }
if (!found) ret = 69;
}
2023-11-15 20:56:56 +03:00
2023-11-19 17:14:42 +03:00
struct utsname uname_buf;
char hostname[max_hostname_length];
char username[max_username_length];
char uptime[max_uptime_length];
gethostname(hostname, max_hostname_length);
getlogin_r(username, max_username_length);
getuptime(uptime, max_uptime_length);
2023-11-12 14:54:45 +03:00
uname(&uname_buf);
2023-11-19 17:14:42 +03:00
printf(
"%s %s@%s\n"
"%s --\n"
"%s %s %s\n"
"%s %s\n",
art[0], username, hostname,
art[1],
art[2], uname_buf.sysname, uname_buf.release,
art[3], uptime
);
return ret;
2023-06-10 17:56:49 +03:00
}