diff options
| author | Aidan <torrinfail@gmail.com> | 2019-03-24 17:51:45 -0600 | 
|---|---|---|
| committer | Aidan <torrinfail@gmail.com> | 2019-03-24 17:51:45 -0600 | 
| commit | a724e5cdac9f557b57654a1fc40b22d032c9404f (patch) | |
| tree | 1a1f4edffb381c366ab4d500f8abeb614c16f292 | |
| parent | Changed makefile to include X11 libraries. (diff) | |
| download | dwmblocks-a724e5cdac9f557b57654a1fc40b22d032c9404f.tar.gz dwmblocks-a724e5cdac9f557b57654a1fc40b22d032c9404f.tar.bz2 dwmblocks-a724e5cdac9f557b57654a1fc40b22d032c9404f.tar.xz dwmblocks-a724e5cdac9f557b57654a1fc40b22d032c9404f.tar.zst dwmblocks-a724e5cdac9f557b57654a1fc40b22d032c9404f.zip | |
Changed commands to use ~ instead of /home/aidan
Diffstat (limited to '')
| -rw-r--r-- | blocks.h | 10 | 
1 files changed, 6 insertions, 4 deletions
| @@ -1,6 +1,8 @@ +//Modify this file to change what commands output to your statusbar, and recompile using the make command.  static const Block blocks[] = { -	{"/home/aidan/bin/statusbar/volume", 0, 10}, -	{"/home/aidan/bin/statusbar/brightness", 0, 11}, -	{"/home/aidan/bin/statusbar/battery", 5, 0}, -	{"/home/aidan/bin/statusbar/clock", 5, 0}, +	/*Command*/		/*Update Interval*/	/*Update Signal*/ +	{"~/bin/statusbar/volume",	0,		10}, +	{"~/bin/statusbar/brightness",	0,		11}, +	{"~/bin/statusbar/battery",	5,		0}, +	{"~/bin/statusbar/clock",	5,		0},  }; | 
