polytreewm/src/dwm.h

36 lines
881 B
C
Raw Permalink Normal View History

2021-11-21 01:29:09 +00:00
#ifndef _DWM_H
#define _DWM_H
#include "config/buttons.h"
#include "config/keys.h"
#include "config/layouts.h"
2021-11-21 22:57:22 +00:00
int dwm_main(const char *program_title);
2021-11-21 01:29:09 +00:00
void centeredmaster(void *arg);
void floating(void *arg);
void horizontile(void *arg);
void monocle(void *arg);
void tile(void *arg);
void configborder(const Arg *arg);
void configgap(const Arg *arg);
void dorestart(const Arg *arg);
void focusmon(const Arg *arg);
void focusstack(const Arg *arg);
void incnmaster(const Arg *arg);
void killclient(const Arg *arg);
void movemouse(const Arg *arg);
void movestack(const Arg *arg);
void quit(const Arg *arg);
void resetnmaster(const Arg *arg);
void resizemouse(const Arg *arg);
void setlayout(const Arg *arg);
void setmfact(const Arg *arg);
void spawn(const Arg *arg);
void tagmon(const Arg *arg);
void togglefloating(const Arg *arg);
void zoom(const Arg *arg);
2021-11-21 01:29:09 +00:00
#endif // _DWM_H