Add osd.border.type and osd.border.bevel-width options

This commit is contained in:
Jack Zeal 2026-04-01 20:40:21 -07:00
parent 773996f1ee
commit 362c3e1b47
9 changed files with 35 additions and 10 deletions

View file

@ -2,6 +2,7 @@
#ifndef LABWC_LAB_SCENE_RECT_H
#define LABWC_LAB_SCENE_RECT_H
#include <wayland-server-core.h>
#include "common/borderset.h"
struct wlr_scene_tree;
@ -12,7 +13,8 @@ struct lab_scene_rect_options {
float *bg_color; /* can be NULL */
int width;
int height;
bool beveled;
enum border_type border_type;
int bevel_width;
};
struct lab_scene_rect {