update gif on packard article for v0.0.2 release

This commit is contained in:
Troy 2025-01-14 21:32:45 +00:00
parent b19689b4fc
commit 1221061291
Signed by: troy
GPG key ID: DFC06C02ED3B4711
2 changed files with 21 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 MiB

After

Width:  |  Height:  |  Size: 729 KiB

View file

@ -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