work on niri

This commit is contained in:
TheWanderingCrow 2025-06-26 11:48:28 -04:00
parent 8d88675778
commit e2a331d5d1
2 changed files with 35 additions and 1 deletions

View file

@ -1 +0,0 @@
{}

View file

@ -14,6 +14,41 @@
programs.niri = {
enable = true;
settings = {
binds = with config.lib.niri.actions; {
"Mod+Shift+Slash".action = show-hotkey-overlay;
"Mod+Enter" = {
hotkey-overlay.title = "Open terminal";
action = spawn "foot";
};
"Mod+D" = {
hotkey-overlay.title = "Open Application Picker";
action = spawn "wofi" "--show" "run";
};
"Mod+Shift+Z" = {
hotkey-overlay.title = "Lock computer";
action = spawn "";
};
};
input = {
keyboard = {
numlock = true;
};
touchpad = {
tap = false;
natural-scroll = true;
click-method = "button-areas";
disabled-on-external-mouse = true;
};
};
layout = {
gaps = 16;
};
spawn-at-startup = [
"waybar"
"swaync"
"udiskie"
"/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1"
];
};
};
}