Replaced ifs with a switch statement for printing uptime
This commit is contained in:
parent
daabd44a9e
commit
b767645854
1 changed files with 10 additions and 6 deletions
10
uwufetch.c
10
uwufetch.c
|
@ -338,16 +338,20 @@ void print_info()
|
|||
#else
|
||||
uptime = sys.uptime;
|
||||
#endif
|
||||
if (uptime < 3600)
|
||||
switch (uptime) {
|
||||
case 0 ... 3599:
|
||||
printf("\033[18C%s%sUWUPTIME %s%lim\n",
|
||||
NORMAL, BOLD, NORMAL, uptime / 60 % 60);
|
||||
else if (uptime / 3600 < 24)
|
||||
break;
|
||||
case 3600 ... 86399:
|
||||
printf("\033[18C%s%sUWUPTIME %s%lih, %lim\n",
|
||||
NORMAL, BOLD, NORMAL, uptime / 3600, uptime / 60 % 60);
|
||||
else
|
||||
break;
|
||||
default:
|
||||
printf("\033[18C%s%sUWUPTIME %s%lid, %lih, %lim\n",
|
||||
NORMAL, BOLD, NORMAL, uptime / 86400, uptime / 3600 % 24, uptime / 60 % 60);
|
||||
}
|
||||
}
|
||||
if (show_colors)
|
||||
printf("\033[18C%s%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\n",
|
||||
BOLD, BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, NORMAL);
|
||||
|
|
Loading…
Reference in a new issue