aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-10-13 15:37:56 +1100
committerallusive-dev <[email protected]>2023-10-13 15:37:56 +1100
commitc157fa368e01f6f2cf2c1257d55da01cfd605ccf (patch)
tree7c0ded9d1e2312fe915326d7445317ad988e292e /src/config.h
parentUpdate README.md (diff)
downloadcompfy-c157fa368e01f6f2cf2c1257d55da01cfd605ccf.tar.xz
compfy-c157fa368e01f6f2cf2c1257d55da01cfd605ccf.zip
testing corner-rules
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index ba0dcbc..0ed0357 100644
--- a/src/config.h
+++ b/src/config.h
@@ -270,6 +270,8 @@ typedef struct options {
c2_lptr_t *invert_color_list;
/// Rules to change window opacity.
c2_lptr_t *opacity_rules;
+
+ c2_lptr_t *corner_rules;
/// Limit window brightness
double max_brightness;
// Radius of rounded window corners
@@ -314,6 +316,7 @@ bool must_use parse_int(const char *, int *);
struct conv **must_use parse_blur_kern_lst(const char *, bool *hasneg, int *count);
bool must_use parse_geometry(session_t *, const char *, region_t *);
bool must_use parse_rule_opacity(c2_lptr_t **, const char *);
+bool must_use parse_rule_corners(c2_lptr_t **, const char *);
enum blur_method must_use parse_blur_method(const char *src);
enum open_window_animation must_use parse_open_window_animation(const char *src);