summaryrefslogtreecommitdiffstats
path: root/bwbar/build/patches/bwbar_directory_option.patch
blob: 5540ce6a4734f4f4447c87528decf3983ad4f249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Author: Scott M. Dier <sdier@debian.org>
Description: Added --directory function to daemon.

--- a/bwbar.c
+++ b/bwbar.c
@@ -147,6 +147,7 @@
 const struct option longopts[] = {
   { "input",        0, 0, 'i' },
   { "output",       0, 0, 'o' },
+  { "directory",    1, 0, 'd' },
   { "text-file",    1, 0, 'f' },
   { "png-file",     1, 0, 'p' },
   { "interval",     1, 0, 't' },
@@ -169,6 +170,7 @@
 	  "Options: (defaults in parenthesis)\n"
 	  "   --input               -i   Measure input bandwidth\n"
 	  "   --output              -o   Measure output bandwidth (default)\n"
+	  "   --directory           -d   Output directory\n"
 	  "   --text-file <file>    -f   The name of the text output file (ubar.txt)\n"
 	  "   --png-file <file>     -p   The name of the graphical bar file (ubar.png)\n"
 	  "   --interval <seconds>  -t   The poll interval in seconds (15)\n"
@@ -205,6 +207,8 @@
   int measure_input = 0;	/* Input instead of output */
   char *text_file = "ubar.txt";	/* Text filename */
   char *graphics_file = "ubar.png"; /* Graphics filename */
+  char *directory = ""; /* Directory name */
+  char *tmp_char;
   char *unit_name = "Mbit/s";	/* Unit name */
   double unit = 1.0e+6;		/* Unit multiplier */
   int interval = 15;		/* Interval between measurements (s) */
@@ -214,7 +218,7 @@
 
   program = argv[0];
 
-  while ( (opt = getopt_long(argc, argv, "iof:p:t:x:y:b:kMGh", longopts, NULL)) != -1 ) {
+  while ( (opt = getopt_long(argc, argv, "iof:p:t:x:y:b:kMGhd:", longopts, NULL)) != -1 ) {
     switch ( opt ) {
     case 'i':
       measure_input = 1;
@@ -228,6 +232,9 @@
     case 'p':
       graphics_file = optarg;
       break;
+    case 'd':
+      directory = optarg;
+      break;
     case 't':
       interval = atoi(optarg);
       break;
@@ -264,6 +271,18 @@
   if ( argc-optind != 2 )
     usage(1);
 
+  	tmp_char = text_file;
+	text_file = malloc(strlen(text_file) + strlen(directory) + 5);
+	strcpy(text_file, directory);
+	strcat(text_file, "/");
+	strcat(text_file, tmp_char);
+	
+	tmp_char = graphics_file;
+	graphics_file = malloc(strlen(graphics_file) + strlen(directory) + 5);
+	strcpy(graphics_file, directory);
+	strcat(graphics_file, "/");
+	strcat(graphics_file, tmp_char);
+
   t_tmp = malloc(strlen(text_file) + 5);
   g_tmp = malloc(strlen(graphics_file) + 5);
   if ( !t_tmp || !g_tmp ) {
--- a/README
+++ b/README
@@ -59,6 +59,7 @@
 Options: (defaults in parenthesis)
    --input               -i   Measure input bandwidth
    --output              -o   Measure output bandwidth (default)
+   --directory           -d   Output directory
    --text-file <file>    -f   The name of the text output file (ubar.txt)
    --png-file <file>     -p   The name of the graphical bar file (ubar.png)
    --interval <seconds>  -t   The poll interval in seconds (15)