summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-11-14 15:50:11 +0000
committer Eric Hameleers <alien@slackware.com>2020-11-14 15:50:11 +0000
commitdcfe32994b2a8d7f91dec811adf7f1006788a12b (patch)
tree179e0c1a7d9a18626610849e02962622b4b727b7
parent742cea110696b21a5debdbb552bd771bc2286874 (diff)
downloadasb-dcfe32994b2a8d7f91dec811adf7f1006788a12b.tar.gz
asb-dcfe32994b2a8d7f91dec811adf7f1006788a12b.tar.xz
Initial revision
-rw-r--r--bwbar/build/patches/bwbar_directory_option.patch78
1 files changed, 78 insertions, 0 deletions
diff --git a/bwbar/build/patches/bwbar_directory_option.patch b/bwbar/build/patches/bwbar_directory_option.patch
new file mode 100644
index 00000000..5540ce6a
--- /dev/null
+++ b/bwbar/build/patches/bwbar_directory_option.patch
@@ -0,0 +1,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)