summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-01 16:24:06 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-01 16:24:06 +1100
commit3d4577044ee400fc26b0d36ee90d562cf37e969c (patch)
treecb6bcf13f1cad2933adf75244a57a865b4bde7aa /src/config
parentconfig: lazy update arrays (diff)
downloadcaelestia-shell-3d4577044ee400fc26b0d36ee90d562cf37e969c.tar.gz
caelestia-shell-3d4577044ee400fc26b0d36ee90d562cf37e969c.tar.bz2
caelestia-shell-3d4577044ee400fc26b0d36ee90d562cf37e969c.zip
launcher: add round style
Diffstat (limited to 'src/config')
-rw-r--r--src/config/defaults.ts3
-rw-r--r--src/config/types.ts1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/config/defaults.ts b/src/config/defaults.ts
index 5365d86..e933050 100644
--- a/src/config/defaults.ts
+++ b/src/config/defaults.ts
@@ -8,7 +8,7 @@ export default {
// Modules
bar: {
vertical: true,
- style: "gaps",
+ style: "gaps", // One of "gaps", "panel", "embedded"
modules: {
osIcon: {
enabled: true,
@@ -49,6 +49,7 @@ export default {
},
},
launcher: {
+ style: "lines", // One of "lines", "round"
actionPrefix: ">", // Prefix for launcher actions
apps: {
maxResults: 30, // Actual max results, -1 for infinite
diff --git a/src/config/types.ts b/src/config/types.ts
index d3215c8..7bea7bf 100644
--- a/src/config/types.ts
+++ b/src/config/types.ts
@@ -25,6 +25,7 @@ export default {
"bar.modules.dateTime.detailedFormat": STR,
"bar.modules.power.enabled": BOOL,
// Launcher
+ "launcher.style": ["lines", "round"],
"launcher.actionPrefix": STR,
"launcher.apps.maxResults": NUM,
"launcher.files.maxResults": NUM,