mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
15 lines
375 B
Nix
15 lines
375 B
Nix
# 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;
|
|
};
|
|
}
|