aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/config.h2
-rw-r--r--include/container.h8
2 files changed, 6 insertions, 4 deletions
diff --git a/include/config.h b/include/config.h
index fe69e310..a35cfd0a 100644
--- a/include/config.h
+++ b/include/config.h
@@ -203,6 +203,8 @@ struct sway_config {
list_t *config_chain;
const char *current_config;
+ enum swayc_border_types border;
+ int border_thickness;
enum edge_border_types hide_edge_borders;
// border colors
diff --git a/include/container.h b/include/container.h
index 815898d7..07514c8a 100644
--- a/include/container.h
+++ b/include/container.h
@@ -8,7 +8,7 @@ typedef struct sway_container swayc_t;
/**
* Different kinds of containers.
- *
+ *
* This enum is in order. A container will never be inside of a container below
* it on this list.
*/
@@ -37,9 +37,9 @@ enum swayc_layouts {
};
enum swayc_border_types {
- B_NONE, /**< No border */
- B_PIXEL, /**< 1px border */
- B_NORMAL /**< Normal border with title bar */
+ B_NONE, /**< No border */
+ B_PIXEL, /**< 1px border */
+ B_NORMAL /**< Normal border with title bar */
};
/**