

I must have been tired when I did that math. I’d be happy with the year as well. Just don’t use the firefox/chrome model.


I must have been tired when I did that math. I’d be happy with the year as well. Just don’t use the firefox/chrome model.


If semantic versioning is:
MAJOR version when you make incompatible API changes MINOR version when you add functionality in a backward compatible manner PATCH version when you make backward compatible bug fixes
then I think that would be on like 3.77.0 or something right now. Not terrible, but honestly prefer it to be like the major upped in the new year every year. It is about 43 years old,so 43.x in 2026. Would be easier to know how old a kernel release is without looking it up.


Doesn’t surprise to hear this. If Nvidia was really holding back, then AMD would have past them. I feel like they are starting to experience what the cpu side started seeing when they hit 4ghz and had to start chipping away at more clocks. It took longer as they are doing easily parallel operations, but it was bound to happen. I really wonder how both AMD and Nvidia will compare to their prior architectures next iteration. Will my 4080 still be faster than a 6070(ti)?


dead.letter is email draft in some clients when they crash.


So, it was revealed to be the only type of intelligence.


Hmm, sure.


I wonder why colorizing manpages like this is not default in most distros. That seems like an obvious thing to configure for end user’s quality of life.
My best guess would be that each terminal could display differently or be buggy and a “lowest common denominator” approach where it work everywhere. I know blue tends to be to dark unless I change the color to a lighter shade and the font could make a difference as well.


No
I wasn’t intending to come off confrontational, I apologize for that. I was looking at this from it sounding like you wanted any command on a system. I did find that you can colorize man. see script below for an example. As for busybox, it is a small project, so colorizing just it would be relatively easy and easy to add as a patch to a system. Not sure if that would upstream though as it is intended to work well on low memory systems among others.
#!/bin/bash
export PAGER="less -r"
export GROFF_NO_SGR=1
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'
man ls
Edit: it does seem that this man colorization is disabled by default.
Edit2: “export MANROFFOPT=-c” can replace “export GROFF_NO_SGR=1” to limit just man.
Edit3: source Arch Linux bbs


I am getting the feeling the you are mis-understanding than each project has their own independent implementing function and that each one would need to be rewritten. There a 10 of thousands of projects. This is not some simple, change 1 project task.


16 Color terminals didn’t really start getting used until the 90s and early 2000s. And 256 after that. A lot of software was written back then and it would take a lot to add something that might not display well because of the terminal’s color scheme and now we have color theming.


I agree, I just didn’t want to make assumptions about how newer things work with localization these days.


Not everything uses groff. A lot will have their own function or another.
Edit: I think for what you indicting you are wanting to try you’d need to either patch your shell of choice or write your own.
Edit2: If you did patch it, the best way I can think of to get something upstreamed would be to patch bash to use CTRL-Enter to automatically pipe the output to the default pager defined in BASHPAGER followed by PAGER if it doesn’t exist. Then set the BASHPAGER to your “bat” command.


Or if you are lazy you could add “-h” as an option to said help command for when --help doesn’t work. Shouldn’t take to long to to make a list with a script that runs each command to with --help and logs it all to a file though. Then just go look for the ones that don’t like it in the log. Apparently bash has a builtin command named help, so a different name is probably better then.
ls -1 $dir | while read line do echo “----------” $line --help |& >> logfile.txt done
Just search in you favorite pager for “-----” and just hit “next” key.


You’d be intercepting all commands just to verify if they have a help flag and then if not executing them as they were intended. If the intercept got broke, then the shell would be completely broken.


I think your best bet to to create a script called help and run “help <command>” and the script would do the rest.


Swap is used to defrag ram on linux. Could be related to that. In any case this is pretty normal. I have 43Gi available and it is used 700Mi of swap.


I agree. There are times when I speak to someone that has an unfamiliar accent that my brain has trouble processing. They can be speaking fluent English , but I still struggle.


Wouldn’t it better to just stop acknowledging Tesla and stop pretending that it is a premium brand?


I don’t think it should have a significant effect on performance. On the other hand gamescope is broken on my system right now. There are probably plus and minuses of both.
Try opening a new terminal. If the commands don’t work, type “export PATH=/usr/bin” not quotes and try again and fix what you did.