talwat / pokeget-rs

A better rust version of pokeget.
MIT License
91 stars 3 forks source link

Request to add Neofetch sysinfo #4

Closed Sarthak950 closed 6 months ago

talwat commented 7 months ago

That's a bit vague, do you mean instructions on how to use it with neofetch?

Sarthak950 commented 7 months ago

yes if it is available or a feature request if not

dustin4242 commented 7 months ago

I don't believe there is a way to do this with neofetch itself however you can use a seperate command that can put the two together called bfetch: https://github.com/NNBnh/bfetch I used this in the past with pokeget when I wanted the system information next to the pokemon

dustin4242 commented 7 months ago

If we wanted this in pokeget I guess we would try to put the output of neofetch without a distro logo next to the pokemon when pokeget is run with a --neofetch argument possibly

talwat commented 7 months ago

Yeah, I tried putting the output of pokeget into a file and then pointing neofetch to it with --ascii, but it didn't really work. My guess is something to do with length calculations. Anyhow, it's more of a limitation in neofetch, but there are probably some other programs that fix this bug.

CactiChameleon9 commented 7 months ago
_pokemon="$(pokeget 0 --hide-name)"
fastfetch --data-raw "$_pokemon"

that worked for me with fastfetch

Sarthak950 commented 7 months ago

i think i will build it my self

cyborgdennett commented 3 weeks ago

any way to do it with multiple pokemon?

cyborgdennett commented 3 weeks ago

image You might enjoy this one

cyborgdennett commented 3 weeks ago

Found a much better command for this

( pokeget 1 2 --hide-name; pokeget 2 1 --hide-name) | cat | fastfetch --file-raw -

image

Sarthak950 commented 3 weeks ago

thanks man

    pokeget random --hide-name | fastfetch --file-raw -

i am using this for now