You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
375 B
15 lines
375 B
# Pick a display to mirror using wl-mirror and slurp
|
|
{ lib, writeShellApplication, wl-mirror, slurp }: (writeShellApplication {
|
|
name = "wl-mirror-pick";
|
|
runtimeInputs = [ slurp wl-mirror ];
|
|
|
|
text = /* bash */ ''
|
|
output=$(slurp -f "%o" -o)
|
|
wl-mirror "$output"
|
|
'';
|
|
}) // {
|
|
meta = with lib; {
|
|
licenses = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|
|
|