nix-configs/modules/desktop/home/niri/screenshot.nix

15 lines
428 B
Nix
Raw Normal View History

2025-04-11 09:20:46 +02:00
{ pkgs, ... }:
{
2025-03-12 02:00:13 +01:00
programs.niri.settings = {
screenshot-path = "~/Pictures/screenshots/%Y-%m-%dT%H:%M:%S.png";
binds = {
2025-04-11 09:20:46 +02:00
"Print".action.screenshot = [ ];
"Ctrl+Print".action.screenshot-screen = [ ];
"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
};
};
}