2025-03-12 02:00:13 +01:00
|
|
|
{pkgs, ...}: {
|
|
|
|
programs.niri.settings = {
|
|
|
|
screenshot-path = "~/Pictures/screenshots/%Y-%m-%dT%H:%M:%S.png";
|
|
|
|
binds = {
|
|
|
|
"Print".action.screenshot = [];
|
|
|
|
"Ctrl+Print".action.screenshot-screen = [];
|
2025-03-27 19:41:45 +01:00
|
|
|
"Shift+Print".action.screenshot-window = [];
|
|
|
|
"Mod+S".action.screenshot = [];
|
|
|
|
"Mod+Ctrl+S".action.screenshot-screen = [];
|
|
|
|
"Mod+Shift+S".action.screenshot-window = [];
|
2025-03-12 02:00:13 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|