mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
12 lines
333 B
C
12 lines
333 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 *);
|
|
void list_rules(char *);
|
|
|
|
#endif
|