mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 07:59:43 +00:00
12 lines
335 B
Nix
12 lines
335 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
package = pkgs.writeShellScriptBin "flick-action" ''
|
|
if ! command -v ydotool >/dev/null 2>&1; then
|
|
${pkgs.libnotify}/bin/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
|
|
'';
|
|
}
|