Why would you
pipeedit: redirect 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…
But .bashrc is executed, not displayed.
Maybe they meant to say
echo neofetch >> ~/.bashrc
.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
true!! i meant
echo neofetch >> .bashrc
Who’s the true noob now? Smh
(/s)
actually. i meant neofetch > bashrc, as in neofetch is better. checkmate
/s
It’s a dangerous command because a single
destroys your
.bashrc
.This is why you have a dotfiles repository, you noob!
That’s a redirection, not a pipe.
Good catch.
Exactly, that’s bloat
2GB dotfile repo
being lost without vim keybinds
Im_in_this_picture_and_I_dont_like_it.png
I use macOS btw
Also looking at my dotfiles repo…
This post is what is giving me the idea to finally set up a dotfiles repo for the first time.
i had i3 run with no problems on some of the worst machines I had to use. I’ll fight with anyone that claims i3 is bloat.
i love i3
I love it, too. It’s rock solid.
i3 with debian, and xfce as alternative desktop environment for when you need someone else to use your machine(and also because xfce apps are nice).
Too smart for NixOS - LMAO! I bet this guy has a conky on his Blackbox.
Good old conky lol. Its like it was made to be a config playground, and the actual functionality was an afterthought.
Afterthought is an understatement. I didn’t mind piping some of that info into an i3 status bar, but just a couple things. Who needs to watch all that distracting system stuff all the time. Using autocompletions on the command line would get that info quick enough. And whoever down voted my original comment - I’m laughing about it. Serious business right?
Average OpenBSD user
OpenBSD users:
Almost and not always average Gentoo user
- Has over 100 obscure USE flags he forgot what they do
- Needs two days to configure his kernel and two more to compile it.
- Uses ancient thinkpad
- Uses lynx because firefox won’t compile
- Uses rusty old software because of “tradition”
- Uptime ~30 years
Uptime ~30 years
Too generous for Gentoo.
“Maybe if I tweak the kernel config juuuuust a little bit today” “Is it just me or did this particular version of gcc make the kernel 0.0002% slower? I need to do some tests” “…Dunno, it just feels slower today, I guess I need to recompile the whole system”
Uptime: 30 minutes, tops
True I didn’t take this into account. On the other hand we have systemd soft-reboot now.
you forgot the cooling pad it’s on since the fans died like a decade ago
Neofetch and NixOS are bloat.
Arch’s X setup sucks, sx is better.
Also, 2 GB of dotfiles is bloat
Must be pretty bad spaghetti code.
But I can’t have sx if I use Linux ;(
I do use sx in Arch, though?
It was just an attempt at a dumb stereotypical joke that Linux users don’t have sex
I write in POSIX shell as a matter of principle.
My “dotfiles” repo is a few Kb in size.
I am too dumb and lazy to try Nix.
I do like using vim keybindings in my terminal.
Neofetch is bloat, I wrote a script that shows some essential information when the machine starts and that’s it.
based.
Akchually, binary prefixes are the one and only correct prefixes for counting digital size of information (GiB instead of GB).
acckshually, i dont use ‘Giga’ or ‘Mega’, i just use bits, in scientific notation: 2.0*10^9
That wouldn’t be 2 GB, that would be 2 Gb
GB would be 2.0*10^9*8 bits
uhhh uhhh what’s more bloated than windows 10 uhhhhhhhhhhhhhhhhh i honestly don’t know
windows 11
nooo that has smaller icon’s mabye windows 8 start screen
nfetch() { echo "" echo "$USER @ $(hostname)" echo "" echo "kernel : $(uname -r)" echo "uptime : $(uptime -p)" echo "pkgs : $(dpkg -l | grep '^ii' | wc -l)" echo "bat : $(acpi -b | grep -Po '(?<=: ).*(?=,)' | tr -d '[:space:]') " # need to install acpi to run bat echo "" }
bloat-free!
deleted by creator