home/programs/niri: skip hotkeys overlay at startup
This commit is contained in:
parent
786cdbf979
commit
25993d2754
1 changed files with 30 additions and 30 deletions
|
@ -10,13 +10,23 @@ in {
|
||||||
imports = [./binds.nix];
|
imports = [./binds.nix];
|
||||||
programs.niri = {
|
programs.niri = {
|
||||||
settings = {
|
settings = {
|
||||||
environment = {
|
input.keyboard.xkb = {
|
||||||
"NIXOS_OZONE_WL" = "1";
|
layout = "us";
|
||||||
"DISPLAY" = ":0";
|
options = "compose:ralt";
|
||||||
"_JAVA_AWT_WM_NONREPARENTING" = "1"; # https://wiki.archlinux.org/title/Sway#Java_applications
|
|
||||||
};
|
};
|
||||||
|
|
||||||
prefer-no-csd = true;
|
prefer-no-csd = true;
|
||||||
|
hotkey-overlay.skip-at-startup = true;
|
||||||
|
|
||||||
|
layout = {
|
||||||
|
focus-ring = {
|
||||||
|
enable = true;
|
||||||
|
active.color = "#${colors.base0E}";
|
||||||
|
};
|
||||||
|
center-focused-column = "always";
|
||||||
|
always-center-single-column = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
window-rules = [
|
window-rules = [
|
||||||
{
|
{
|
||||||
|
@ -39,20 +49,10 @@ in {
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
input.keyboard.xkb = {
|
environment = {
|
||||||
layout = "us";
|
"NIXOS_OZONE_WL" = "1";
|
||||||
options = "compose:ralt";
|
"DISPLAY" = ":0";
|
||||||
};
|
"_JAVA_AWT_WM_NONREPARENTING" = "1"; # https://wiki.archlinux.org/title/Sway#Java_applications
|
||||||
|
|
||||||
layout = {
|
|
||||||
focus-ring = {
|
|
||||||
enable = true;
|
|
||||||
active.color = "#${colors.base0E}";
|
|
||||||
};
|
|
||||||
|
|
||||||
center-focused-column = "always";
|
|
||||||
always-center-single-column = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue