feat(niri): more config

This commit is contained in:
Ahurac 2024-10-14 19:27:04 +02:00
parent 0e485fee7d
commit 41df33c7ae

View file

@ -48,8 +48,12 @@
package = pkgs.niri;
settings = {
input = {
keyboard.xkb.layout = "fr";
keyboard.xkb.options = "compose:rctrl";
keyboard = {
xkb.layout = "fr";
xkb.options = "compose:rctrl";
repeat-delay = 300;
repeat-rate = 100;
};
touchpad = {
tap = true;
natural-scroll = true;
@ -57,17 +61,28 @@
};
mouse.accel-profile = "flat";
warp-mouse-to-focus = true;
focus-follows-mouse.max-scroll-amount = "0%";
focus-follows-mouse.enable = true;
};
outputs."eDP-1" = { scale = 1; };
layout = {
gaps = 10;
default-column-width.proportion = 0.5;
preset-window-heights = [{ proportion = 1.0 / 2.0; }];
focus-ring = {
width = 4;
active.color = "#35f835e5";
inactive.color = "#80808080";
};
};
workspaces = {
w1 = { name = "admin"; };
w2 = { name = "everything"; };
w3 = { name = "apps"; };
};
window-rules = [{
matches = [{ app-id = "im.riot.Riot"; }];
open-on-workspace = "apps";
}];
prefer-no-csd = true;
screenshot-path = "~/screenshots/%Y%m%d%H%m%N.png";
binds = with config.lib.niri.actions; {
@ -86,6 +101,14 @@
allow-when-locked = true;
action = spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle";
};
"XF86MonBrightnessDown" = {
allow-when-locked = true;
action = spawn "brightnessctl" "set" "10-";
};
"XF86MonBrightnessUp" = {
allow-when-locked = true;
action = spawn "brightnessctl" "set" "+10";
};
"Mod+Shift+Q".action = close-window;
"Mod+A".action = focus-column-left;
"Mod+Z".action = focus-window-or-workspace-up;
@ -122,7 +145,9 @@
"Print".action = screenshot-screen;
"Shift+Print".action = screenshot;
"Alt+Print".action = screenshot-window;
"Mod+Shift+Backspace".action = quit;
"Mod+Shift+Backspace" = {
action = quit { skip-confirmation = true; };
};
"XF86Display".action = power-off-monitors;
};
};