nix/home/file/sway/module/TitleBar.nix

15 lines
261 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
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
'';
2024-04-06 03:03:58 +03:00
}