Compare commits

..

No commits in common. "d915aaf7edf67bf222b74a412d0991681adcc2b6" and "5b8eb5f7b146db4a2089fe1ca96b243a5c471e84" have entirely different histories.

8 changed files with 58 additions and 104 deletions

2
.gitignore vendored
View File

@ -38,7 +38,7 @@ blocks.h
*.i*86 *.i*86
*.x86_64 *.x86_64
*.hex *.hex
someblocks dwmblocks
# Debug files # Debug files
*.dSYM/ *.dSYM/

View File

@ -1,7 +1,6 @@
ISC License (ISC) ISC License (ISC)
Copyright 2020 torrinfail Copyright 2020 torrinfail
Copyright 2021 Raphael Robatsch
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

View File

@ -1,22 +1,17 @@
PREFIX ?= /usr/local PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
CC ?= cc CC ?= cc
LDFLAGS = -lX11
output: someblocks.c blocks.def.h blocks.h output: dwmblocks.c blocks.def.h blocks.h
${CC} someblocks.c $(LDFLAGS) -o someblocks ${CC} dwmblocks.c $(LDFLAGS) -o dwmblocks
blocks.h: blocks.h:
cp blocks.def.h $@ cp blocks.def.h $@
clean: clean:
rm -f *.o *.gch someblocks rm -f *.o *.gch dwmblocks
install: output install: output
mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
install -m 0755 someblocks $(DESTDIR)$(PREFIX)/bin/someblocks install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks
install -m 0755 blocks-battery $(DESTDIR)$(PREFIX)/bin/blocks-battery
install -m 0755 blocks-mail $(DESTDIR)$(PREFIX)/bin/blocks-mail
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
install -m 0644 someblocks.1 $(DESTDIR)$(MANPREFIX)/man1/someblocks.1
uninstall: uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/someblocks rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks
rm -f $(DESTDIR)$(MANPREFIX)/man1/someblocks.1

View File

@ -1,19 +1,15 @@
# someblocks # dwmblocks
Modular status bar for [somebar](https://git.sr.ht/~raphi/somebar) written in c. Modular status bar for dwm written in c.
This is a fork of [dwmblocks](https://github.com/torrinfail/dwmblocks), modified
to connect to somebar instead of dwm.
The mailing list for this project is
[~raphi/public-inbox@lists.sr.ht](mailto:~raphi/public-inbox@lists.sr.ht).
# usage # usage
To use someblocks first run 'make' and then install it with 'sudo make install'. To use dwmblocks first run 'make' and then install it with 'sudo make install'.
After that you can put someblocks in your startup script to have it start with dwl/somebar. After that you can put dwmblocks in your xinitrc or other startup script to have it start with dwm.
# modifying blocks # modifying blocks
The statusbar is made from text output from commandline programs. The statusbar is made from text output from commandline programs.
Blocks are added and removed by editing the blocks.h header file. Blocks are added and removed by editing the blocks.h header file.
By default the blocks.h header file is created the first time you run make which copies the default config from blocks.def.h. By default the blocks.h header file is created the first time you run make which copies the default config from blocks.def.h.
This is so you can edit your status bar commands and they will not get overwritten in a future update. This is so you can edit your status bar commands and they will not get overwritten in a future update.
# patches # patches
Here are some patches to someblocks that add features that I either don't want to merge in, or that require a dwl/somebar patch to work. Here are some patches to dwmblocks that add features that I either don't want to merge in, or that require a dwm patch to work.
I do not maintain these but I will take pull requests to update them. I do not maintain these but I will take pull requests to update them.
<br>
<a href=https://gist.github.com/toniz4/41d168719e22bf7bc4ecff09d424b7d2>dwmblocks-statuscmd-20200717-941f415.diff</a>

View File

@ -1,10 +0,0 @@
#!/bin/bash
percentage=$(upower -i /org/freedesktop/UPower/devices/battery_BAT1 | grep percentage: | cut -c 26-)
state=$(upower -i /org/freedesktop/UPower/devices/battery_BAT1 | grep state: | cut -c 26- | grep -E '^discharging$')
if [ -z $state ]
then
echo $percentage+
else
echo $percentage
fi

View File

@ -1,2 +0,0 @@
unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/INBOX/new/ -type f | wc -l 2>/dev/null)"
echo $unread

View File

@ -1,11 +1,11 @@
#define _POSIX_C_SOURCE 200809L
#include<stdlib.h> #include<stdlib.h>
#include<stdio.h> #include<stdio.h>
#include<string.h> #include<string.h>
#include<unistd.h> #include<unistd.h>
#include<fcntl.h>
#include<errno.h>
#include<signal.h> #include<signal.h>
#ifndef NO_X
#include<X11/Xlib.h>
#endif
#ifdef __OpenBSD__ #ifdef __OpenBSD__
#define SIGPLUS SIGUSR1+1 #define SIGPLUS SIGUSR1+1
#define SIGMINUS SIGUSR1-1 #define SIGMINUS SIGUSR1-1
@ -36,8 +36,17 @@ int getstatus(char *str, char *last);
void statusloop(); void statusloop();
void termhandler(); void termhandler();
void pstdout(); void pstdout();
void psomebar(); #ifndef NO_X
static void (*writestatus) () = psomebar; void setroot();
static void (*writestatus) () = setroot;
static int setupX();
static Display *dpy;
static int screen;
static Window root;
#else
static void (*writestatus) () = pstdout;
#endif
#include "blocks.h" #include "blocks.h"
@ -45,8 +54,6 @@ static char statusbar[LENGTH(blocks)][CMDLENGTH] = {0};
static char statusstr[2][STATUSLENGTH]; static char statusstr[2][STATUSLENGTH];
static int statusContinue = 1; static int statusContinue = 1;
static int returnStatus = 0; static int returnStatus = 0;
static char somebarPath[128];
static int somebarFd = -1;
//opens process *cmd and stores output in *output //opens process *cmd and stores output in *output
void getcmd(const Block *block, char *output) void getcmd(const Block *block, char *output)
@ -58,11 +65,8 @@ void getcmd(const Block *block, char *output)
int i = strlen(block->icon); int i = strlen(block->icon);
fgets(output+i, CMDLENGTH-i-delimLen, cmdf); fgets(output+i, CMDLENGTH-i-delimLen, cmdf);
i = strlen(output); i = strlen(output);
if (i == 0) { if (i == 0)//return if block and command output are both empty
//return if block and command output are both empty
pclose(cmdf);
return; return;
}
if (delim[0] != '\0') { if (delim[0] != '\0') {
//only chop off newline if one is present at the end //only chop off newline if one is present at the end
i = output[i-1] == '\n' ? i-1 : i; i = output[i-1] == '\n' ? i-1 : i;
@ -118,6 +122,28 @@ int getstatus(char *str, char *last)
return strcmp(str, last);//0 if they are the same return strcmp(str, last);//0 if they are the same
} }
#ifndef NO_X
void setroot()
{
if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
return;
XStoreName(dpy, root, statusstr[0]);
XFlush(dpy);
}
int setupX()
{
dpy = XOpenDisplay(NULL);
if (!dpy) {
fprintf(stderr, "dwmblocks: Failed to open display\n");
return 0;
}
screen = DefaultScreen(dpy);
root = RootWindow(dpy, screen);
return 1;
}
#endif
void pstdout() void pstdout()
{ {
if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed. if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
@ -127,26 +153,6 @@ void pstdout()
} }
void psomebar()
{
if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
return;
if (somebarFd < 0) {
somebarFd = open(somebarPath, O_WRONLY|O_CLOEXEC);
if (somebarFd < 0 && errno == ENOENT) {
// assume somebar is not ready yet
sleep(1);
somebarFd = open(somebarPath, O_WRONLY|O_CLOEXEC);
}
if (somebarFd < 0) {
perror("open");
return;
}
}
dprintf(somebarFd, "status %s\n", statusstr[0]);
}
void statusloop() void statusloop()
{ {
setupsignals(); setupsignals();
@ -180,12 +186,6 @@ void termhandler()
statusContinue = 0; statusContinue = 0;
} }
void sigpipehandler()
{
close(somebarFd);
somebarFd = -1;
}
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
for (int i = 0; i < argc; i++) {//Handle command line arguments for (int i = 0; i < argc; i++) {//Handle command line arguments
@ -193,20 +193,18 @@ int main(int argc, char** argv)
strncpy(delim, argv[++i], delimLen); strncpy(delim, argv[++i], delimLen);
else if (!strcmp("-p",argv[i])) else if (!strcmp("-p",argv[i]))
writestatus = pstdout; writestatus = pstdout;
else if (!strcmp("-s",argv[i]))
strcpy(somebarPath, argv[++i]);
} }
#ifndef NO_X
if (!strlen(somebarPath)) { if (!setupX())
strcpy(somebarPath, getenv("XDG_RUNTIME_DIR")); return 1;
strcat(somebarPath, "/somebar-0"); #endif
}
delimLen = MIN(delimLen, strlen(delim)); delimLen = MIN(delimLen, strlen(delim));
delim[delimLen++] = '\0'; delim[delimLen++] = '\0';
signal(SIGTERM, termhandler); signal(SIGTERM, termhandler);
signal(SIGINT, termhandler); signal(SIGINT, termhandler);
signal(SIGPIPE, sigpipehandler);
statusloop(); statusloop();
#ifndef NO_X
XCloseDisplay(dpy);
#endif
return 0; return 0;
} }

View File

@ -1,22 +0,0 @@
.TH someblocks 1 someblocks\-1.0
.SH NAME
someblocks \- Modular status bar for somebar
.SH SYNOPSIS
.B someblocks
.RB [ \-d
.IR delimiter ]
.RB [ \-s
.IR path ]
.RB [ \-p ]
.SH DESCRIPTION
Modular status bar for somebar written in c.
.SH OPTIONS
.TP
.B \-d
Sets the delimiter between blocks
.TP
.B \-s
Sets the path to the somebar control FIFO. The default value is
$XDG_RUNTIME_DIR/somebar-0
.SH BUGS
Send bug reports to ~raphi/public-inbox@lists.sr.ht