diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2016-09-29 15:57:40 +0000 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2016-09-29 15:57:40 +0000 |
commit | 06f384f7c32fe499330ad729f187f319c382b637 (patch) | |
tree | 3675462bc4c6b1a0fc3794156bff89e802107496 /sysutils/conky | |
parent | 45d2740cc969135f8e6cfd715ee7d410650047ad (diff) | |
download | ports-06f384f7c32fe499330ad729f187f319c382b637.tar.gz ports-06f384f7c32fe499330ad729f187f319c382b637.zip |
Notes
Diffstat (limited to 'sysutils/conky')
-rw-r--r-- | sysutils/conky/Makefile | 2 | ||||
-rw-r--r-- | sysutils/conky/files/patch-src_freebsd.cc | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sysutils/conky/Makefile b/sysutils/conky/Makefile index ab41e6b64732..671f70dfc649 100644 --- a/sysutils/conky/Makefile +++ b/sysutils/conky/Makefile @@ -4,7 +4,7 @@ PORTNAME= conky PORTVERSION= 1.10.4 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= madpilot@FreeBSD.org diff --git a/sysutils/conky/files/patch-src_freebsd.cc b/sysutils/conky/files/patch-src_freebsd.cc index 0e89b18f9fe1..6aa9be65eb56 100644 --- a/sysutils/conky/files/patch-src_freebsd.cc +++ b/sysutils/conky/files/patch-src_freebsd.cc @@ -51,7 +51,15 @@ } double get_battery_perct_bar(struct text_object *obj) -@@ -745,11 +725,14 @@ void get_battery_short_status(char *buff +@@ -729,6 +709,7 @@ void get_top_info(void) + + proc->time_stamp = g_time; + proc->name = strndup(p[i].ki_comm, text_buffer_size.get(*state)); ++ proc->basename = strndup(p[i].ki_comm, text_buffer_size.get(*state)); + proc->amount = 100.0 * p[i].ki_pctcpu / FSCALE; + proc->vsize = p[i].ki_size; + proc->rss = (p[i].ki_rssize * getpagesize()); +@@ -745,11 +726,14 @@ void get_battery_short_status(char *buff if (0 == strncmp("charging", buffer, 8)) { buffer[0] = 'C'; memmove(buffer + 1, buffer + 8, n - 8); |