mirror of
https://github.com/mintycube/dwmblocks.git
synced 2024-10-22 14:05:47 +02:00
Fork of dwmblocks-async for personal use
.github | ||
include | ||
src | ||
.clang-format | ||
.clang-tidy | ||
.clangd | ||
.gitattributes | ||
.gitignore | ||
config.h | ||
LICENSE | ||
Makefile | ||
README.md |
dwmblocks
Lightweight, Clickable, Modular and Async status bar for dwm. Fork of dwmblocks-async
Modifying the blocks
You can define your status bar blocks in config.h
:
#define BLOCKS(X) \
...
X(" ", "wpctl get-volume @DEFAULT_AUDIO_SINK@ | cut -d' ' -f2", 0, 5) \
X(" ", "date '+%H:%M:%S'", 1, 1) \
...
Each block has the following properties:
Property | Description |
---|---|
Icon | An icon you wish to prepend to your block output. |
Command | The command you wish to execute in your block. |
Update interval | Time in seconds, after which you want the block to update. If 0 , the block will never be updated. |
Update signal | Signal to be used for triggering the block. Must be a positive integer. If 0 , a signal won't be set up for the block and it will be unclickable. |