fix(sway): titlebars showing #322
1 changed files with 21 additions and 17 deletions
|
@ -23,7 +23,8 @@ let
|
||||||
datadir = "${schema}/share/gsettings-schemas/${schema.name}";
|
datadir = "${schema}/share/gsettings-schemas/${schema.name}";
|
||||||
in
|
in
|
||||||
pkgs.writers.writeDashBin "configure-gtk" ''
|
pkgs.writers.writeDashBin "configure-gtk" ''
|
||||||
export XDG_DATA_DIRS=${datadir}:$XDG_DATA_DIRS
|
export XDG_DATA_DIRS="${datadir}:$XDG_DATA_DIRS"
|
||||||
|
|
||||||
gnome_schema=org.gnome.desktop.interface
|
gnome_schema=org.gnome.desktop.interface
|
||||||
config="${config.xdg.configHome}/gtk-3.0/settings.ini"
|
config="${config.xdg.configHome}/gtk-3.0/settings.ini"
|
||||||
if [ ! -f "$config" ]; then exit 1; fi
|
if [ ! -f "$config" ]; then exit 1; fi
|
||||||
|
@ -56,22 +57,25 @@ in
|
||||||
};
|
};
|
||||||
output."*".bg = "${cfg.background} fill";
|
output."*".bg = "${cfg.background} fill";
|
||||||
# Window Appearance
|
# Window Appearance
|
||||||
window.border = 2;
|
window = {
|
||||||
# Make certain windows floating
|
border = 2;
|
||||||
window.commands = [
|
titlebar = false;
|
||||||
{
|
# Make certain windows floating
|
||||||
command = "floating enable";
|
commands = [
|
||||||
criteria.title = "zoom";
|
{
|
||||||
}
|
command = "floating enable";
|
||||||
{
|
criteria.title = "zoom";
|
||||||
command = "floating enable";
|
}
|
||||||
criteria.class = "floating";
|
{
|
||||||
}
|
command = "floating enable";
|
||||||
{
|
criteria.class = "floating";
|
||||||
command = "floating enable";
|
}
|
||||||
criteria.app_id = "floating";
|
{
|
||||||
}
|
command = "floating enable";
|
||||||
];
|
criteria.app_id = "floating";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
# Startup scripts
|
# Startup scripts
|
||||||
startup =
|
startup =
|
||||||
[
|
[
|
||||||
|
|
Loading…
Add table
Reference in a new issue