.dotfiles/pkgs/kanshare/default.nix
Leon Schwarzäugl 7abc476d51
Some checks failed
Flake check / Check flake (push) Has been cancelled
feat: niri, new winters ip, mail fixes
2025-08-24 14:56:50 +02:00

9 lines
282 B
Nix

{ name, writeShellApplication, wlr-randr, busybox, wl-mirror, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ wlr-randr busybox wl-mirror ];
text = ''
wlr-randr | grep "$2" | cut -d" " -f1 | xargs -I{} wl-present mirror "$1" --fullscreen-output {}
'';
}