• 0 Posts
  • 93 Comments
Joined 3 years ago
cake
Cake day: June 12th, 2023

help-circle









  • 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.


  • I’d rather have screws than those clip-in covers that break or having to pry the device open like some brands of devices, ie most of the tech industry. Somewhere in the middle. Quickly being able to replace a battery easily a plus don’t get me wrong, but I don’t want it getting torn up in the process one either extreme. I am ok with it may take several minutes, but not with “can I buff this out” or “where is the tape/glue”.






  • 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





  • 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.