diff --git a/src/content/projects/packard/demo.gif b/src/content/projects/packard/demo.gif index cc22088..ea0498a 100644 Binary files a/src/content/projects/packard/demo.gif and b/src/content/projects/packard/demo.gif differ diff --git a/src/content/projects/packard/index.mdx b/src/content/projects/packard/index.mdx index f3b8efc..adfdb6f 100644 --- a/src/content/projects/packard/index.mdx +++ b/src/content/projects/packard/index.mdx @@ -18,6 +18,26 @@ Packard is a simple RSS aggregator meant to allow you to take a quick glance at ![Demo](demo.gif) +This is my first attempt at making something with Rust so that I may learn alongside creating something that I personally find useful. + +## Installation + +On NixOS you can install Packard by including it as an input in flake.nix, then adding it to your system packages. + +```nix +inputs = { + packard.url = "github:troylusty/packard"; +}; +``` + +```nix +environment.systemPackages = { + inputs.packard.packages."${pkgs.system}".default +}; +``` + +Alternatively, [the latest release](https://github.com/troylusty/packard/releases/latest) binary is available. + ## Configuration There are now several options available to be configured, with more on their way. As of now Packard's config file should be placed within `$HOME/.config/packard` and formatted in TOML. @@ -60,7 +80,7 @@ news = [ After running Packard with your configured settings, the parsed results can be opened in your default browser however your terminal allows for opening URLs. For example the keybind for this with [Foot](https://codeberg.org/dnkl/foot#urls) is `ctrl` + `shift` + `o`. -Currently no keyboard interaction is implemented. To get around this you can pipe the output of Packard into a tool like `less` like so: `packard -c 12 -l news -s 3 | less`. Be aware, this will remove any text formatting that has been applied. +Currently no keyboard interaction is implemented. To get around this you can pipe the output of Packard into a tool like `less` like so: `packard -c 12 -l news -s 3 | less`. ### External links