Files
nixos/hyprland/scripts/screenshot.nix

29 lines
424 B
Nix
Raw Permalink Normal View History

2026-04-08 14:24:18 +02:00
{ lib, config, ... }:
{
home.file.".config/hypr/hyprland/scripts/screenshot.sh".text = ''
#!/bin/bash
INPUT="echo -e Screen\nWindow\nRegion"
SELECTED=$($INPUT | fuzzel -d)
case "$SELECTED" in
"Screen")
hyprshot -m output
;;
"Window")
hyprshot -m window
;;
"Region")
hyprshot -m region
;;
*)
echo "Invalid selection"
;;
esac
'';
home.file.".config/hypr/hyprland/scripts/screenshot.sh".force = true;
}