You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Ashish Kumar Yadav 230229c482 Small improvement in sigdwmblocks 4 years ago
blocks Removed unnecessary quotes after case from scripts 4 years ago
daemons Removed unnecessary quotes after case from scripts 4 years ago
patches dwm patch - Fixed bugs with multiple monitors 4 years ago
.gitignore Added gitignore 4 years ago
GNUmakefile Renamed Makefile to GNUmakefile 4 years ago
LICENSE Added license 4 years ago
README.md Improved readme 4 years ago
blocks.h Added info to blocks.h 4 years ago
dwmblocks.c Increased default CMDLENGHTH to 50 4 years ago
sigdwmblocks.c Small improvement in sigdwmblocks 4 years ago
xgetrootname.c Did some cleanup 4 years ago

README.md

dwmblocks

Modular status monitor for dwm written in C with features including signaling, clickability, cursor hinting and color.

Usage

dwmblocks [-d <delimiter>]

Modifying blocks

Blocks are added and removed by editing the blocks.h file. Read it for more info.

Colored output and Clickability

The patches folder contains two patches for dwm, one for dwm already patched with systray patch and the other for dwm without systray. One of the patches, whichever appropriate, is essential for dwmblocks to function properly. It will add support for colored text, clickability and cursor hinting when hovering on clickable blocks (inspired by polybar).

Clickability is inspired by the statuscmd patch for dwm. On clicking on text corresponding to a clickable block, the program specified to handle clicks for that block is executed with the first argument specifying which button was clicked (1 for left, 2 for middle and 3 for right by default).

Colored output is inspired by the statuscolors patch for dwm. To add colors, have your programs for the blocks output raw characters from '\x0b' to '\x31'. '\x0b' in status text switches the active colorscheme to the first one in the scheme array in dwm and so on. See statuscolors patch for more info. Keep in mind that you have to start from '\x0b' instead of '\x01' as instructed on the page.

Signaling changes

To signal a specific block to update, run sigdwmblocks <signal> [<sigval>]. <sigval> is optional and must be an integer. If provided, it is passed as the first argument to the program specified for updating the block.

xgetrootname

It is a tiny program to get the current root name. May prove helpful in debugging.

Installation

Clone the repository and run make install clean after getting in the project directory. By default the program is installed in $HOME/.local/bin (see the GNUmakefile). If xgetrootname is required run make xgetrootname.

Acknowledgements

Some ideas and code was taken from other projects. Credits for those go to -

See also

  • dsblocks - A clone of this project with the only difference being that C functions instead of external programs are used to update blocks and handle clicks.