nix/home/file/sway/module/TitleBar.conf
2024-12-18 12:08:17 +03:00

14 lines
272 B
Plaintext

{ config, ... }:
let
borderSize = toString config.module.style.window.border;
in
{
text = ''
# Disable title bar.
default_border pixel ${borderSize}
default_floating_border pixel ${borderSize}
titlebar_padding 1
titlebar_border_thickness 0
'';
}