bspwm/rules.h
2013-06-01 12:00:26 +02:00

13 lines
372 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);
void prune_rules(desktop_t *);
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