21 lines
261 B
Nix
21 lines
261 B
Nix
{
|
|
writeShellApplication,
|
|
xf86_input_wacom,
|
|
xorg,
|
|
xdotool,
|
|
bc,
|
|
}:
|
|
writeShellApplication {
|
|
name = "xwacomcalibrate";
|
|
|
|
runtimeInputs = [
|
|
xf86_input_wacom
|
|
xorg.xwininfo
|
|
xorg.xrandr
|
|
xdotool
|
|
bc
|
|
];
|
|
|
|
text = ./xwacomcalibrate.sh;
|
|
}
|