summaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 5a58c07c..fe69e310 100644
--- a/include/config.h
+++ b/include/config.h
@@ -156,6 +156,13 @@ struct border_colors {
uint32_t child_border;
};
+enum edge_border_types {
+ E_NONE, /**< Don't hide edge borders */
+ E_VERTICAL, /**< hide vertical edge borders */
+ E_HORIZONTAL, /**< hide horizontal edge borders */
+ E_BOTH /**< hide vertical and horizontal edge borders */
+};
+
/**
* The configuration struct. The result of loading a config file.
*/
@@ -196,6 +203,8 @@ struct sway_config {
list_t *config_chain;
const char *current_config;
+ enum edge_border_types hide_edge_borders;
+
// border colors
struct {
struct border_colors focused;