summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/defaults.ts1
-rw-r--r--src/config/types.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/defaults.ts b/src/config/defaults.ts
index e933050..e8e67ac 100644
--- a/src/config/defaults.ts
+++ b/src/config/defaults.ts
@@ -3,6 +3,7 @@ import { Astal } from "astal/gtk3";
export default {
style: {
transparency: "normal", // One of "off", "normal", "high"
+ borders: true,
vibrant: false, // Extra saturation
},
// Modules
diff --git a/src/config/types.ts b/src/config/types.ts
index 7bea7bf..dd92040 100644
--- a/src/config/types.ts
+++ b/src/config/types.ts
@@ -6,6 +6,7 @@ const OBJ_ARR = (shape: object) => ARR(JSON.stringify(shape));
export default {
"style.transparency": ["off", "normal", "high"],
+ "style.borders": BOOL,
"style.vibrant": BOOL,
// Bar
"bar.vertical": BOOL,