fix(sway): titlebars showing
All checks were successful
/ check (nvimDev) (push) Successful in 5s
/ check (nvimHeadless) (push) Successful in 3s
/ check (nvimNoBundledBins) (push) Successful in 4s
/ check (nvimNoLsp) (push) Successful in 5s
/ check (nvimNoTSGrammars) (push) Successful in 4s
/ check (treefmt) (push) Successful in 2s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 4s
All checks were successful
/ check (nvimDev) (push) Successful in 5s
/ check (nvimHeadless) (push) Successful in 3s
/ check (nvimNoBundledBins) (push) Successful in 4s
/ check (nvimNoLsp) (push) Successful in 5s
/ check (nvimNoTSGrammars) (push) Successful in 4s
/ check (treefmt) (push) Successful in 2s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 4s
Now that I set `stateVersion>=23.05`.
This commit is contained in:
parent
db16afc2b0
commit
d0f7302610
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