Skip Navigation

  • neofetch is dead since years. I recommend fastfetch instead neofetch. Besides that, its not really minimalistic as this one. Also because it is written in Python and minimalistic, its easier to make changes for lot of people.

  • I would want to avoid echo and just write to output file directly.

  • The problem for me is not that it is exposed to "someone". I am okay with Myrient getting my IP. The problem with Torrent is, that anyone joining the session gets all IPs from everyone who is connected at the moment.

  • I quickly wrote a script that uses kdialog from KDE to input text in a box, then writes both files to a temporary file, compares with diff and outputs the difference in a text box again. At the end it deletes the temporary files (if they are not deleted, they will be removed automatically with next system boot anyway). It's a quick and dirty script.

    I call it diffuse, for diff + use.

     bash
        
    #!/usr/bin/env bash
    
    title="Diff - Compare 2 Texts"
    output_size="720x720"
    
    file1="$(mktemp)"
    file2="$(mktemp)"
    file3="$(mktemp)"
    
    kdialog --title "${title} (input)" --textinputbox "Input Text 1" >> "${file1}"
    kdialog --title "${title} (input)" --textinputbox "Input Text 2" >> "${file2}"
    diff -- "${file1}" "${file2}" >> "${file3}"
    kdialog --title "${title} (diff)" --geometry "${output_size}" --textbox "${file3}"
    
    rm -- "${file1}"
    rm -- "${file2}"
    rm -- "${file3}"
    
      

    Edit: Forgot to mention the name of the script. Edit2: Totally wrong shebang line corrected.

  • I am on EndeavourOS since 2 years or so, after I stopped using Manjaro (and then before that I stopped using Ubuntu). I am personally not searching for a distribution right now, it was just a question to see what others would prefer. And I love EndeavourOS so far, its a great distribution.

  • For Manjaro, it remains to be seen how the restructure will workout. They will become a non profit organization. The previous leadership (phil) was one of the reasons why I stopped using Manjaro a while ago, maybe 2 years by now. Just looked into the link a bit and... it's worse than I thought.

    Ubuntu has its own problems, but I think if the core infrastructure and leadership cannot be trusted, then no other decision on the project matters. So my personal vote would go for Ubuntu and against Manjaro, if I were to decide which of them to use.

  • What's more trustworthy, Ubuntu or Manjaro?

  • I just made a similar comment and totally agree on both points. In the past, handhelds were actually this small, like a (bigger) phone with controls attached. Smartphones have bad battery life too and if its based on Android, then privacy concerns too. A dedicated handheld should be cheaper then full fledged power smartphone being able to play those games.

  • Enable Beta updates.

  • A Steam smartphone implies to me its main purpose is to play PC games and not caring about the other stuff. And no, for that reason I wouldn't buy a Steam smartphone. Because playing games on mobile phone sucks, for controls (and I always need a controller in addition), battery life and size. And its probably as expensive as a PC. I would rather buy a dedicated handheld, if its available in this form. And if its based on Android, its a nogo anyway, for privacy reasons.

  • We are the chosen ones. :D

  • Did you notice anything that would be worthwhile switching from EndeavourOS to CachyOS? Not having any problems is nice, but is there an actual reason and do you even notice it in real world usage (I don't count benchmarks)?

  • They had way too much ambition, which was beyond name and brand change. They had or planned changes in functionality and features as well. What I suggest is, a simple name and brand change. They just need to create a patch that is always patching after a new version of GIMP, without further ambition.

  • For the most part they don't. And it is only one reason why Indie games are important. The other is that the games often tend to be cheaper, sometimes more innovative, doesn't try to put micrtransactions in everything and so on.

  • I'm just sad its Torrents now. I personally avoid Torrents whenever "piracy" is involved, because everyone who connects to the same Torrent can see my IP.

  • That is not really true. I use same graphics card and upgrade it with new console cycle. Or maybe once in between.

  • Indie games are more important than ever.

  • The color scheme, more dense and compact styles, non floating tabs, less rounded, and here and there stuff. I even changed something after posting. Being able to make changes to the UI with custom CSS is amazing on Firefox.