mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
#!/usr/bin/env nu
|
|
|
|
def main [ ] {
|
|
let reg = (
|
|
xwininfo -id (xdotool getactivewindow)
|
|
| lines
|
|
| parse '{key}: {value}'
|
|
| str trim
|
|
| get value
|
|
| echo {
|
|
x: $in.1
|
|
y: $in.2
|
|
w: $in.5
|
|
h: $in.6
|
|
}
|
|
);
|
|
|
|
flameshot gui --region $"($reg.w)x($reg.h)+($reg.x)+($reg.y)" -c -p ~/Pictures/screenshots
|
|
} |