From f37c0160d5833796ffc8c3e83554c40678b389c7 Mon Sep 17 00:00:00 2001 From: Pierce Thompson Date: Fri, 4 Jul 2025 23:35:16 -0400 Subject: [PATCH 1/2] Switch client and server sections in the default config The properties listed under the client config are actually in the server config, with the client config being empty. --- data/config/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/config/config.toml b/data/config/config.toml index 5089aa9..fd0ea23 100644 --- a/data/config/config.toml +++ b/data/config/config.toml @@ -1,4 +1,4 @@ -[client] +[server] ## style file for the OSD # style = /etc/xdg/swayosd/style.css @@ -16,4 +16,4 @@ ## Available values: ## artist, albumArtist, title, album, trackNumber, discNumber, autoRating -[server] +[client] From a3533f0ff4418763dfe8706e006b11221620acb0 Mon Sep 17 00:00:00 2001 From: Pierce Thompson Date: Fri, 4 Jul 2025 23:36:56 -0400 Subject: [PATCH 2/2] Add ignore_caps_lock_key to the default backend config --- data/config/backend.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/config/backend.toml b/data/config/backend.toml index 00fce1a..bc739e4 100644 --- a/data/config/backend.toml +++ b/data/config/backend.toml @@ -1 +1,3 @@ [input] +## completely ignore the caps lock key (useful if it's rebound to something else like escape) +# ignore_caps_lock_key = false