You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Larbs since a few weeks and everything works fine but today i wanted to add a dwm block (just a simple echo "some text" for testing) but on the statusbar there is always one exclamation mark before my text
The text was updated successfully, but these errors were encountered:
wohlersgit
changed the title
I use Larbs since a few weeks and everything works fine but today i wanted to add a dwm block (just a simple echo "some text" for testing) but on the statusbar there is always one exclamation mark before my text
Exclamation Mark at dwmblock
Aug 2, 2023
I had the same issue, but instead of an exclamation mark, there was a weird symbol at the beginning of every block. I used Luke's dwmblocks and a regular dwm with no patches.
I took a look into the dwmblocks.c and found this at the start of the getcmd function:
if (block->signal) {
output[0] =block->signal;
output++;
}
So, the weird symbol that gets printed is actually the signal number, which corresponds to a non-printable ASCII character.
Then I found out that the first byte (i.e. the signal number) of a block is used by dwm when the statuscmd patch is applied to make the block clickable.
I use Larbs since a few weeks and everything works fine but today i wanted to add a dwm block (just a simple echo "some text" for testing) but on the statusbar there is always one exclamation mark before my text
The text was updated successfully, but these errors were encountered: