hykilpikonna / hyfetch

🏳️‍🌈 🏳️‍⚧️ Neofetch with LGBTQ+ pride flags!
MIT License
1.15k stars 90 forks source link

documented method (3) to run original neofetch can result in errors #258

Closed techie2000 closed 2 months ago

techie2000 commented 2 months ago

Describe the bug

The documentation "Running Updated Original Neofetch" has Method 3: P="$HOME/.local/bin/neowofetch" curl -L nf.hydev.org -o $P && chmod +x $P. Executing this on Debian Bullseye results in an error curl: option -o: requires parameter. The same error exists on Ubuntu Focal Fossa.

Expected behavior

neowofetch is downloaded and installed to $HOME/.local/bin/neowofetch (without error). In my attempts to resolve this, the following resulted in the expected behaviour being observed: P="$HOME/.local/bin/neowofetch" && curl -L nf.hydev.org -o "$P" && chmod +x "$P"