mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-09 01:10:26 +00:00
13 lines
359 B
C
13 lines
359 B
C
static int click_statuscmd(Bar *bar, Arg *arg, BarArg *a);
|
|
#if BAR_EXTRASTATUS_PATCH
|
|
static int click_statuscmd_es(Bar *bar, Arg *arg, BarArg *a);
|
|
#endif // BAR_EXTRASTATUS_PATCH
|
|
static int click_statuscmd_text(Arg *arg, int rel_x, char *text);
|
|
static void copyvalidchars(char *text, char *rawtext);
|
|
|
|
typedef struct {
|
|
const char *cmd;
|
|
int id;
|
|
} StatusCmd;
|
|
|