2GB dotfile repo
being lost without vim keybinds
Im_in_this_picture_and_I_dont_like_it.png
I use macOS btw
Why would you pipe neofetch into your .bashrc?
so that everytime you launch a terminal, your neofetch data is displayed. Because wow, neofetch!!!
It doesn’t really make sense, since the data would be outdated anyway if piped into .bashrc that way…
It won’t work. It’s a dangerous command because a single
destroys your
.bashrc
. You may want eitherecho 'neofetch' >> .bashrc
orneofetch | sed -e 's:%:a:g' | sed -e "s:^\\(.*\\)$:printf '\1\\\\n':" >> .bashrc
or something of that kind.EDIT: tested out the latter command
But .bashrc is executed, not displayed.
Maybe they meant to say
echo neofetch >> ~/.bashrc
.
Almost and not always average Gentoo user