Codecleanup to follow the C code style closer
This commit is contained in:
parent
30c54729b5
commit
003d51c64b
114
cstatbar.c
114
cstatbar.c
@ -5,8 +5,8 @@
|
|||||||
*
|
*
|
||||||
* Requires dwm to have the status2d patch applied and a font that supports icons e.g. Nerdfonts
|
* Requires dwm to have the status2d patch applied and a font that supports icons e.g. Nerdfonts
|
||||||
*
|
*
|
||||||
* author: _N0x
|
* @author: _N0x
|
||||||
* version: 0.1
|
* @version: 0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -23,23 +23,25 @@ enum Icon { IconDateTime, IconBattery, IconCPU, IconRAM, IconDisk,
|
|||||||
IconNetSpeed, IconNetSpeedUp, IconNetSpeedDown, IconNetwork, IconMusic };
|
IconNetSpeed, IconNetSpeedUp, IconNetSpeedDown, IconNetwork, IconMusic };
|
||||||
|
|
||||||
/* function declaration */
|
/* function declaration */
|
||||||
char *cs(int count, ...);
|
char *concat_string (int count, ...);
|
||||||
char *getnetworkspeed();
|
char *get_networkspeed ();
|
||||||
char *makestatitem(enum Icon icon, char *val);
|
char *get_networkinfo ();
|
||||||
char *readinfile(char *filename);
|
char *make_stat_item (enum Icon icon, char *val);
|
||||||
void setup();
|
char *read_in_file (char *filename);
|
||||||
void setxroot(char *title);
|
void setup ();
|
||||||
|
void set_xroot (char *title);
|
||||||
|
|
||||||
/* variables */
|
/* variables */
|
||||||
static const char *iface;
|
static const char *g_if;
|
||||||
static const char kbs[] = "kb/s";
|
static const char KBS[] = "kB/s";
|
||||||
static unsigned int ic;
|
static unsigned int g_ic;
|
||||||
static const char *icb;
|
static const char *g_icb;
|
||||||
static const char *icf;
|
static const char *g_icf;
|
||||||
|
|
||||||
|
|
||||||
/* a variadic function to take in count number of strings and concatenate them into one single string */
|
/* a variadic function to take in count number of strings and concatenate them into one single string */
|
||||||
char * cs(int count, ...)
|
char
|
||||||
|
*concat_string (int count, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
va_start(ap, count);
|
va_start(ap, count);
|
||||||
@ -61,49 +63,68 @@ char * cs(int count, ...)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* get the rx and tx network speed from /sys/ */
|
/* Read in the IP from /proc/net/fib_trie for g_if */
|
||||||
char * getnetworkspeed()
|
char
|
||||||
|
*get_networkinfo ()
|
||||||
{
|
{
|
||||||
char *tmp,*R1,*R2,*T1,*T2;
|
return NULL;
|
||||||
char TT[12], RR[12];
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* get the rx and tx network speed from /sys/ */
|
||||||
|
char
|
||||||
|
*get_networkspeed ()
|
||||||
|
{
|
||||||
|
char *tmp;
|
||||||
|
char *r1;
|
||||||
|
char *r2;
|
||||||
|
char *t1;
|
||||||
|
char *t2;
|
||||||
|
char tt[12];
|
||||||
|
char rr[12];
|
||||||
|
|
||||||
tmp = cs(3, "/sys/class/net/", iface, "/statistics/rx_bytes");
|
tmp = concat_string(3, "/sys/class/net/", g_if, "/statistics/rx_bytes");
|
||||||
R1 = readinfile(tmp);
|
r1 = read_in_file(tmp);
|
||||||
free(tmp);
|
free(tmp);
|
||||||
|
|
||||||
tmp = cs(3, "/sys/class/net/", iface, "/statistics/tx_bytes");
|
tmp = concat_string(3, "/sys/class/net/", g_if, "/statistics/tx_bytes");
|
||||||
T1 = readinfile(tmp);
|
t1 = read_in_file(tmp);
|
||||||
free(tmp);
|
free(tmp);
|
||||||
|
|
||||||
sleep(1);
|
sleep(1);
|
||||||
|
|
||||||
tmp = cs(3, "/sys/class/net/", iface, "/statistics/rx_bytes");
|
tmp = concat_string(3, "/sys/class/net/", g_if, "/statistics/rx_bytes");
|
||||||
R2 = readinfile(tmp);
|
r2 = read_in_file(tmp);
|
||||||
free(tmp);
|
free(tmp);
|
||||||
|
|
||||||
tmp = cs(3, "/sys/class/net/", iface, "/statistics/tx_bytes");
|
tmp = concat_string(3, "/sys/class/net/", g_if, "/statistics/tx_bytes");
|
||||||
T2 = readinfile(tmp);
|
t2 = read_in_file(tmp);
|
||||||
free(tmp);
|
free(tmp);
|
||||||
|
|
||||||
sprintf(RR, "%d", (atoi(R2) - atoi(R1)) / 1024);
|
sprintf(rr, "%d", (atoi(r2) - atoi(r1)) / 1024);
|
||||||
sprintf(TT, "%d", (atoi(T2) - atoi(T1)) / 1024);
|
sprintf(tt, "%d", (atoi(t2) - atoi(t1)) / 1024);
|
||||||
|
|
||||||
return cs(9,
|
return concat_string(9,
|
||||||
icons[IconNetSpeedUp], " ", TT, kbs, " ",
|
icons[IconNetSpeedUp], " ", tt, KBS, " ",
|
||||||
icons[IconNetSpeedDown], " ", RR, kbs);
|
icons[IconNetSpeedDown], " ", rr, KBS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* creates a formatet string for a status item. Adds color if enabled */
|
/* creates a formatet string for a status item. Adds color if enabled */
|
||||||
char * makestatitem(enum Icon icon, char *val){
|
char
|
||||||
return cs(4, " ",
|
*make_stat_item (enum Icon icon, char *val)
|
||||||
ic ? cs(7 ,"^b", icb, "^^c", icf, "^ ", icons[icon], " ^d^") : icons[icon],
|
{
|
||||||
" ", val);
|
return concat_string(4, " ",
|
||||||
|
((g_ic)
|
||||||
|
? concat_string(7 ,"^b", g_icb, "^^c", g_icf, "^ ", icons[icon], " ^d^")
|
||||||
|
: icons[icon]
|
||||||
|
), " ", val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Takes in a filename and returns the content of the file */
|
/* Takes in a filename and returns the content of the file */
|
||||||
char * readinfile(char *fileName)
|
char
|
||||||
|
*read_in_file (char *fileName)
|
||||||
{
|
{
|
||||||
FILE * fd;
|
FILE * fd;
|
||||||
char * c;
|
char * c;
|
||||||
@ -127,16 +148,18 @@ char * readinfile(char *fileName)
|
|||||||
|
|
||||||
|
|
||||||
/* basic setup method for internal variable etc */
|
/* basic setup method for internal variable etc */
|
||||||
void setup(){
|
void setup ()
|
||||||
iface = interface;
|
{
|
||||||
ic = icon_color;
|
g_if = interface;
|
||||||
icb = icon_colorbg;
|
g_ic = icon_color;
|
||||||
icf = icon_colorfg;
|
g_icb = icon_colorbg;
|
||||||
|
g_icf = icon_colorfg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Uses functionality from Xlib to set the window root name to a specified string */
|
/* Uses functionality from Xlib to set the window root name to a specified string */
|
||||||
void setxroot(char *title)
|
void
|
||||||
|
set_xroot (char *title)
|
||||||
{
|
{
|
||||||
Display * dpy = XOpenDisplay(NULL);
|
Display * dpy = XOpenDisplay(NULL);
|
||||||
|
|
||||||
@ -150,14 +173,15 @@ void setxroot(char *title)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int
|
||||||
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
setup();
|
setup();
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
char * ns = makestatitem(IconNetSpeed, getnetworkspeed());
|
char * ns = make_stat_item(IconNetSpeed, get_networkspeed());
|
||||||
|
|
||||||
setxroot(ns);
|
set_xroot(ns);
|
||||||
|
|
||||||
sleep(cycletime);
|
sleep(cycletime);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user