mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 19:45:40 +00:00
18 lines
425 B
Nix
18 lines
425 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
script = pkgs.writeShellScriptBin "flick-action" ''
|
|
if ! command -v ydotool >/dev/null 2>&1; then
|
|
notify-send -r 120000 "Flick" "This tool requires ydotool to be installed on your system."
|
|
fi
|
|
ydotool mousemove -- 800 0
|
|
sleep 0.03
|
|
ydotool mousemove -- -800 0
|
|
'';
|
|
in
|
|
{
|
|
package = pkgs.symlinkJoin {
|
|
name = "autoclick-action";
|
|
paths = [ script pkgs.libnotify ];
|
|
};
|
|
}
|