blob: 6f2beeade9187227d2db91b9dcb3f412dc6ea8f8 (
plain)
1
2
3
4
5
6
7
8
9
|
{ writers, maim, xclip }:
{
name = "screenshot";
icon = "";
exe = writers.writeBash "screenshot" ''
set -eu
${maim}/bin/maim -s | ${xclip}/bin/xclip -selection clipboard -t image/png
'';
}
|