linuxmemes

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

Imacat, (edited ) in Distros bad

Checks out for me. Love me some arch and love my pour over coffee maker. Use both everyday btw.

cypherpunks, in Can you install thid 25 year old program?
@cypherpunks@lemmy.ml avatar

32-bit x86 Haiku OS: is only binary-compatible with a proprietary OS from 2 years ago

kat_angstrom, in How do I exit vim?

:q!

OddFed, (edited )
@OddFed@feddit.de avatar

:!pkill vim

user224,
@user224@lemmy.sdf.org avatar
tetraodon, (edited ) in Linux mint = best beginner distro

As an Arch user, I love Mint. On my wife’s laptop. So I can focus on breaking mine.

creation7758, in Text editor war

Vim user here. I still can’t find the value of c to the power of x in nano. Does anyone have the answer?

SVcross, in what's your ubuntu?
@SVcross@lemmy.world avatar

I only use UWUntu

Pantherina, in Cinnabuntu

Funny how you didnt even search on Google but edited that pic

dimspace, in what's your ubuntu?
@dimspace@lemmy.world avatar

Was Mint with KDE

Now Kubuntu since Mint discontinued their KDE flavour. (Yes you can install KDE but its a hassle to get everything seemless)

Pantherina,

Metapackages are a blessing. But after using KDE for a longer time its interesting to set it up manually on Arch for example, or any random distro, where you dont use the metapackage. But didnt know it was so modular!

Creatortray, in Linux mint = best beginner distro

I’m really enjoying zorin right now.

Knusper, in I am THIS close to joining the Chromium monopoly gang

Firefox is not a GTK application by the way. They use their own XUL/XPCOM framework and are in the long-running process of porting everything to HTML/JS/CSS.

Sonotsugipaa,
@Sonotsugipaa@lemmy.dbzer0.com avatar

There must be GTK somewhere, gtk3 is a dependency on Arch and the GTK_USE_PORTAL env var strongly suggests GTK has something to do with the file chooser. If they’re going to have to reimplement the latter, I hope it’s going to be less horrible than the GTK one but knowing Mozilla I’m not that faithful…

Knusper,

It does use the GTK file-open dialog by default (although distributions can swap that out).

It also takes inspiration from the GTK theme for drawing buttons and whatnot, so they fit into the OS. KDE generates a GTK theme, though, so that’s rarely a problem.

SleepyWheel, in what's your ubuntu?

Ubuntu Studio!

Index_Case, in Come to the Linux side of the force

Urgh. Wish this were true, but nope.

Still needs waaay more effort just to do (some) simple stuff a normal person might just expect to work.

Just installed Mint on a laptop to replace W10. Went really smoothly, and was quite impressed.

Thought I’d try a bit of emulation with Yuzu. Wanted to use a Switch pro controller. Plug and play? Nope. Tried Xbox one controller instead. Neat. Works. I can live with that.

But then thought I’d try a bit of Xbox game stream. No controller works with browser. Try obvious things to fix.

Looked for answers and they’re all like, someone going: oh, you just need to clone the controllerwaffelen driver from git, then just compile the installer using the command sudo apt get- monkeyshyte wtf -make then run the installer from the folder using cmake- getfuckednoob.

I don’t know what any of this is. Tried following instructions.

And, frankly, I cannot be fucked to spend four hours finding out / troubleshooting for something I would have thought was fairly coomon.

It’s not a deal breaker, it’s just another bit of faff and fuckaboutiness that puts me off. And, I suspect would others even less tech minded.

Ziglin,

Buuuut 80% of things can just be installed via a package manager, which takes one command rather than 20 clicks.

Index_Case,

I agree, and that 80% was surprisingly pleasant and smooth experience, compared to my last stab at Linux, about 10 years ago. At least this time I didn’t git any driver issues.

But, that last 20% can be kind of a big deal if you need anything from within in…

I’d like to have the time to learn how to use Linux properly, but between a full time job (unrelated to an OS), young family, and other commitments it’s just not a priority.

I had a play out of interest, and it’s pretty good, but still not 100% usable “out of the box” for me. And how to do that remaining 20% is completely out of many Linux-naive users experience (using the terminal / command line). 20 clicks is easier, as all I’m doing is confirming yes or no on something, that I’m usually given enough information and context to be able to evaluate.

And I suspect that’s true of many many others. Which was the point of my original reply (which I’d hoped to be more humorous than insulting to people, but c’est la vie…).

To try and put it in another context:

It’s really nice to be offered a lift somewhere I need to get to, but if I get kicked out the car and have to walk the remaining 20% of the way, then next time maybe I’ll just get the bus/train/taxi. It might cost more, but at least I know I won’t have to worry if I’ll get there or not.

Also, as a new user, I didn’t know why I was seeing multiple versions of the same packages to install (flatpak etc). Googling to see which is best leads to the inevitable answer of “It depends”, which a new user might not be able to answer…

(I’m not so much speaking to you directly, and I know this is a meme post, but I’m more thinking about the handful of people in the community who seem to always reply along the lines of “people should switch to Linux, because [reason here]. And, yes, people need to learn how to x”, without demonstrating any understanding of nuance around other people’s competing priorities / skills / abilities.)

Aaaaanyway, gonna go Google “Linux 101” lessons…

librechad, (edited )

I understand your frustration, and I’ll try to provide a solution that’s as straightforward as possible. While Linux offers a lot of customization and power, it can sometimes require more technical effort for specific tasks like controller setup.

  1. Checking Compatibility: First, let’s ensure your Xbox controller is compatible with Linux Mint. Most Xbox controllers should work well, but it’s good to verify.

  2. Configuration: Linux Mint typically uses the XInput system for game controllers. Sometimes, extra configuration is needed to get controllers working smoothly.

  3. Reboot: It’s a simple step, but sometimes restarting your computer can help resolve hardware recognition issues.

  4. Updates: Make sure your system and packages are up to date. Open a terminal and run:

    
    <span style="color:#323232;">sudo apt update
    </span><span style="color:#323232;">sudo apt upgrade
    </span>
    
  5. Install “xboxdrv”: If the built-in driver isn’t working as expected, you can try installing the “xboxdrv” package, which can provide better controller compatibility. Run:

    
    <span style="color:#323232;">sudo apt install xboxdrv
    </span>
    
  6. Calibration: After installing xboxdrv, you can calibrate your controller by running:

    
    <span style="color:#323232;">sudo xboxdrv --detach-kernel-driver --silent
    </span>
    

    This command should help with controller recognition.

  7. CMake and Driver Compilation (if needed): If the previous steps don’t resolve the issue and you’re instructed to compile a controller driver using CMake, follow these additional steps:

    • Cloning the Repository: Use the git command to clone the controller driver repository from Git. Replace `` with the actual URL of the repository:

      
      <span style="color:#323232;">git clone https://www.yourwebsite.com
      </span>
      
    • Compiling the Software: Navigate to the cloned repository folder using the terminal. Create a build directory:

      
      <span style="color:#323232;">mkdir build
      </span><span style="color:#323232;">cd build
      </span>
      

      Generate the build files with CMake:

      
      <span style="color:#323232;">cmake ..
      </span>
      

      Build the software:

      
      <span style="color:#323232;">make
      </span>
      
    • Installation: After successfully building the software, you may need to install it. This can usually be done with the following command:

      
      <span style="color:#323232;">sudo make install
      </span>
      
  8. Browser Game Stream: If you’re using a web browser for Xbox game streaming, ensure you’re using a browser that fully supports it. Google Chrome is a good choice for this.

  9. Test: Finally, test your controller in a web-based game streaming service like Xbox Cloud Gaming to see if it works as expected.

If these steps don’t resolve the issue, please provide more details about your system, controller model, and any error messages you encounter during the process. I’ll do my best to assist you further.

SkinnyTimmy,

… thanks GPT?

Index_Case,

Lol, really does read in chatGPTs “voice”…

Ziglin,

Mint is Debian based?

CapeWearingAeroplane,

This is gpt-satire… i think?

HeyThisIsntTheYMCA, in Cli for the win
@HeyThisIsntTheYMCA@lemmy.world avatar

You take your fancy numbers and git!

Xirup, in ubuntu a granel (bulk ubuntu)

What’s that supposed to say? Or what I’m not understanding?

404, (edited )

“Ubuntu a granel” means “Free of charge” in Kinyarwanda (according to Google Translate).

Edit to add: It’s spoken in Rwanda.

See also en.wikipedia.org/wiki/Ubuntu_philosophy

cocolopez, (edited )
@cocolopez@lemmy.world avatar

It’s like “take as much as you want”.

This was outside a minimarket

Judicus,

It translates to “free of charge” or something to that end.

Ubuntu is a Bantu (broad language family of about 600 African languages including Zulu) term meaning something like “humanity” or “community”

Near as I can tell, Granel is borrowed from spanish and in isolation would mean “grain”

sneezycat,
@sneezycat@sopuli.xyz avatar

“A granel” in Spanish means “in bulk”. It’s used when you go to a store and you put however much of whatever you need in a bag. Usually done with veggies.

MigratingtoLemmy, in Text editor war

I’d probably use helix/codium with vim bindings for more complex projects, with vim for Scripting in python/shell/config files

auf,

Finally, a helix user 🤝

MigratingtoLemmy,

TBH I haven’t used helix extensively, but I do like that I can just expect things like auto-complete and linting to work, which I would usually expect from something like vscodium, but that’s not cli. So yes, helix is nice. I’m just a bit afraid that I’ll forget my vim bindings because helix does things a little differently: wd instead of dw

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linuxmemes@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #