]> git.lizzy.rs Git - bspwm.git/blob - rules.h
Remove `--float-upcoming` from `control`
[bspwm.git] / rules.h
1 #ifndef _RULES_H
2 #define _RULES_H
3
4 #define MATCH_ALL  "*"
5
6 void add_rule(rule_t *);
7 void remove_rule(rule_t *);
8 void remove_rule_by_uid(unsigned int);
9 void prune_rules(desktop_t *);
10 rule_t *find_rule(unsigned int);
11 bool is_match(rule_t *, xcb_window_t);
12 void handle_rules(xcb_window_t, monitor_t **, desktop_t **, bool *, bool *, bool *, bool *, bool *, bool *);
13 void list_rules(char *, char *);
14
15 #endif