bspwm/rules.h

13 lines
333 B
C
Raw Normal View History

2012-09-11 13:12:53 +02:00
#ifndef _RULES_H
#define _RULES_H
2012-12-25 19:03:35 +01:00
void add_rule(rule_t *);
2012-12-26 14:39:46 +01:00
void remove_rule(rule_t *);
void remove_rule_by_uid(unsigned int);
2012-12-25 19:28:24 +01:00
rule_t *find_rule(unsigned int);
2012-09-11 13:12:53 +02:00
bool is_match(rule_t *, xcb_window_t);
void handle_rules(xcb_window_t, monitor_t **, desktop_t **, bool *, bool *, bool *, bool *, bool *);
2012-12-25 19:03:35 +01:00
void list_rules(char *);
2012-09-11 13:12:53 +02:00
#endif