Hide resolution by default on headless systems
This commit is contained in:
parent
422224d927
commit
5a511a1f9e
1 changed files with 4 additions and 3 deletions
|
@ -245,8 +245,9 @@ void print_info()
|
||||||
printf("\033[18C%s%sWAM %s%i MB/%i MB\n",
|
printf("\033[18C%s%sWAM %s%i MB/%i MB\n",
|
||||||
NORMAL, BOLD, NORMAL, (ram_used), ram_total);
|
NORMAL, BOLD, NORMAL, (ram_used), ram_total);
|
||||||
if (show_resolution)
|
if (show_resolution)
|
||||||
printf("\033[18C%s%sRESOLUTION%s %dx%d\n",
|
if (screen_width != 0 || screen_height != 0)
|
||||||
NORMAL, BOLD, NORMAL, screen_width, screen_height);
|
printf("\033[18C%s%sRESOLUTION%s %dx%d\n",
|
||||||
|
NORMAL, BOLD, NORMAL, screen_width, screen_height);
|
||||||
if (show_shell)
|
if (show_shell)
|
||||||
printf("\033[18C%s%sSHELL %s%s\n",
|
printf("\033[18C%s%sSHELL %s%s\n",
|
||||||
NORMAL, BOLD, NORMAL, shell);
|
NORMAL, BOLD, NORMAL, shell);
|
||||||
|
@ -254,7 +255,7 @@ void print_info()
|
||||||
printf("\033[18C%s%sPKGS %s%s%d %s\n",
|
printf("\033[18C%s%sPKGS %s%s%d %s\n",
|
||||||
NORMAL, BOLD, NORMAL, NORMAL, pkgs, pkgman_name);
|
NORMAL, BOLD, NORMAL, NORMAL, pkgs, pkgman_name);
|
||||||
if (show_uptime)
|
if (show_uptime)
|
||||||
if(sys.uptime/3600 < 24)
|
if (sys.uptime/3600 < 24)
|
||||||
printf("\033[18C%s%sUWUPTIME %s%lih, %lim\n",
|
printf("\033[18C%s%sUWUPTIME %s%lih, %lim\n",
|
||||||
NORMAL, BOLD, NORMAL, sys.uptime/3600, sys.uptime/60%60);
|
NORMAL, BOLD, NORMAL, sys.uptime/3600, sys.uptime/60%60);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue