kittysay-0.4.0 is not a library.
Visit the last successful build:
kittysay-0.8.0
kittysay
The cutest successor of cowsay.
----
< meow >
----
\
\
/l、
(゚、 。 7
l ~ヽ
じしf_,)ノ
Installation
Cargo
# or
Nix
Try it out
# or for the latest commit
Installation with flakes
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
kittysay.url = "github:uncenter/kittysay";
};
outputs = { self, nixpkgs, kittysay }: {
nixosConfigurations.example = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [{
environment.systemPackages = [
inputs.kittysay.packages.${pkgs.system}.default
];
}];
};
}
}
Usage
kittysay ":3"
echo ":3" | kittysay -
You can use the --width flag to change the width of the message box (kittysay ":3" --width 100), or the --think flag to enable "think" mode (in which the speech bubbles are replaced with thought bubbles, similar to the cowthink program).