mirror of https://github.com/tiyn/dwmblocks
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
266 B
16 lines
266 B
1 year ago
|
#pragma once
|
||
|
#include "block.h"
|
||
|
#include "config.h"
|
||
|
#include "util.h"
|
||
|
|
||
|
typedef struct {
|
||
|
char *current;
|
||
|
char *previous;
|
||
|
} BarStatus;
|
||
|
|
||
|
extern unsigned short debugMode;
|
||
|
|
||
|
void initStatus(BarStatus *);
|
||
|
void freeStatus(BarStatus *);
|
||
|
void writeStatus(BarStatus *);
|