From fffbcfa080067e07ae08106cf03b00dc80214110 Mon Sep 17 00:00:00 2001 From: Alejandro Angulo Date: Sun, 13 Nov 2022 08:36:10 -0800 Subject: [PATCH] Enabled titlebars This should have gone in an earlier commit (the one to make focused windows more obvious) but I missed it. --- users/alejandro/sway/sway.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/users/alejandro/sway/sway.nix b/users/alejandro/sway/sway.nix index df731bb..120cf9a 100644 --- a/users/alejandro/sway/sway.nix +++ b/users/alejandro/sway/sway.nix @@ -77,12 +77,15 @@ in { }; }; - window.commands = [ - { - command = "inhibit_idle fullscreen"; - criteria = {class = ".*";}; - } - ]; + window = { + titlebar = true; + commands = [ + { + command = "inhibit_idle fullscreen"; + criteria = {class = ".*";}; + } + ]; + }; focus.followMouse = false;