mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-05 20:26:09 +01:00
12 lines
284 B
C
12 lines
284 B
C
|
/* See LICENSE file for copyright and license details. */
|
||
|
|
||
|
#ifndef JDWM_DRAW_H
|
||
|
#define JDWM_DRAW_H
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
void drawstatus(Display *, jdwm_config *); /* draw the bar */
|
||
|
inline unsigned int textw(const char *text); /* return the width of text in px */
|
||
|
|
||
|
#endif
|