• 0 Posts
  • 51 Comments
Joined 1 年前
cake
Cake day: 2023年6月17日

help-circle

    1. You’ve got Black and White working? I’ve smashed my head against that one before but never got it going.
    2. The issue is that the copy protections check for a physical disk (with various methods) sometimes “Windows” ISO tools work better (CDEmu CloneDrive…) you would need to run them in the same wine prefix. But the easier way might be to find a nocd “patch” for your application ;)


  • MHH interesting. I honestly haven’t really given kde a fair shot since KDE4 maybe I need to force myself to use Plasma 6. Gnome has really gotten on my nerves lately. But I also know that on Plasma I will mostly recreate my gnome experience (Super key, hot corner …) since these are so ingrained in me from over a decade of using gnome.





  • somenonewho@feddit.detolinuxmemes@lemmy.worldthx, duck duck joey
    link
    fedilink
    arrow-up
    16
    arrow-down
    1
    ·
    6 个月前

    As a Linux nerd and Privacy/Open source advocate it’s tough to admit. But I can’t use DuckDuckGo. I work as a Linux Sysadmin and Google is the only search engine reliably returning good results (especially on more obscure topics). With DuckDuckGo I’ve often noticed that it will simply “drop” words from you search terms (i.e. if you search “yellow computer chair” it might just show you any kind of yellow chair or something like that) which makes it unusable for precise searches.








  • Funny I had to Google ci" to remember what it does even though I use that sometimes.

    I’ve committed to learning vim years ago and in most situations im faster in vim than in nano etc. (especially because of muscle memory) I still feel like I’m not properly using vim to it’s full extend (like whenever I remember using registers it feels like magick and I’m sure there’s more like that)



  • It’s funny because when you described your problem I also knew immediately what the issue was since I remember turning that setting on for my gaming PC back when steam play was new (been gaming on Linux exclusively since 2016).

    But for the life of me I can not remember turning on that setting on my steam deck. I must have since it works with all games but I really can’t remember switching it on.


  • Pigs are pigs no matter where you are.

    In Germany they regularly kill POC in “self defense” like when they shot a 16 year old kid, that was holding a knife, with an AR.

    Some cops are also fascists or support other fascist actors. Like when an attorney for the victims of the fascist terror group “NSU” got threat via fax signed “NSU 2.0” her Fax number was pulled from the data in Frankfurts 1sr precinct where a bunch of Cops were working that were also in a WhatsApp group sharing Nazi memes.

    And the people investigating all of this? The police of course. Like when two police precincts were investigating each other both for killing a person “in self defense”.

    Tl;dr: ACAB world wide


  • Gotta agree with Ozymandias aliases are the way to go.

    I’ve set up a few different aliases “search” which is just pacman -Ss “install” (pacman -Sy) “update” (pacman -Syyu) “remove” (pacman -Rns) and finally as to your question about unneeded dependencies I’ve got “clean” which first does an orphan check/clean (pacman -Qtdq | pacman -Rns -) and afterwards also cleans the package cache (pacman -Sc) Also the aliases are automatically prefixed with sudo (if it is installed).

    This way I simply run update and afterwards clean and my system is up to date and cleaned of orphans.

    I’ve created these aliases back when I was still using 3Distros (Arch,Debian/*buntu, Fedora) so my alias definition comes after a little script that determines the correct package manager and, depending on that, sets the aliases. But that’s of course only necessary if you use different distros and want your aliases to be portable.

    Tl;dr: Set up aliases for things you wanna do often. Check the wiki for reference if you only want to do something every so often.