bspwm/rules.h
2013-03-12 10:56:45 +01:00

12 lines
341 B
C

#ifndef _RULES_H
#define _RULES_H
void add_rule(rule_t *);
void remove_rule(rule_t *);
void remove_rule_by_uid(unsigned int);
rule_t *find_rule(unsigned int);
bool is_match(rule_t *, xcb_window_t);
void handle_rules(xcb_window_t, monitor_t **, desktop_t **, bool *, bool *, bool *, bool *, bool *, bool *);
void list_rules(char *);
#endif