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

help-circle

  • 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






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










  • It is easier. Raster based rendering does a lot of cheats to make it look realistic that the devs have to come up with and write. To do 4K you need to calculate over 8 million rays and their bounces. Very processor intensive, but much simpler from a programming point of view.

    Now the difference between some of those settings on low and ultra are not really worth it is some cases as they look basicly the same.

    Overall these ray tracing methods are leading to more realistic raster based rendering as the devs can actively see the “problem” areas and make or fix the cheats to look better.





  • I am using a 4080 on Plasma 6 wayland. It works pretty well. DLSS works. I haven’t tried frame generation, but I think support was added recently. Occasionally I have a wake problem, but I believe that is bios related. I am encountering a gamescope blackscreen freezing issue.

    Only stuttering I am experiencing is a Steam overlay bug and Bluetooth interference sometimes.

    Compositor choice and how recent of release will effect your experience as they are all independent implementations and still improving.

    I wouldn’t expect that a 20 series card to be a specifically buggier experience over the 40 and 30 series though.