WYGIWYG

  • 0 Posts
  • 29 Comments
Joined 10 months ago
cake
Cake day: September 24th, 2024

help-circle


  • rumba@lemmy.ziptolinuxmemes@lemmy.worldThe end is near
    link
    fedilink
    English
    arrow-up
    2
    ·
    24 days ago

    Tried KDE in the early days, it was all over the place. Switched to gnome when it was baked. I had been gnome for years. Every update broke and replaced plugins to make it work like I wanted. I’ve had Windows layout since’95, I have to go back and forth a lot, so muscle memory is key.

    After fucking with gnome for the 90th time. I tried KDE again, it was just layed out like I wanted. No plugins, no fucking with it. The worst thing I have to do is set dolphin not to open on single click.

    I see people here going well if you don’t take it as it comes you’re going to have a bad time. That’s pretty much the least Linux comment I’ve ever read. That’s OSX in a nutshell.







  • Mostly, it’s a downmixing issue.

    The movie is mixed to have Music, Speech, SFX spread out through 5.1 or 7.1 The speech and primary important sounds come through center. General music is a mix of L,R and Surround. When you feed that audio track to a dumb tv, it does a horrible job at turning it into L and R sound only.

    If you feed it through a good 5.1 or 7.1 receiver or soundbar, you get options for Speech and surround and you can mess with levels individually. But the speech is front and loud.

    If I just plug my roku into my tv, the center channel is almost at, all I get is the light intermixing of center in L and R so speech is horrible. you jack up the volume to hear the speech, then all the other sound is way too loud

    Likewise, in most cases just taking an AAC and convert it to mp3 without adjusting the levels, it ends up sounding like trash.


  • Wow, I never had a manifestation. I just woke on the couch one morning and realized I didn’t have control over my breathing and couldn’t move. I was living alone and unemployed at the time and it occurred to me that if I was actually frozen in place that no one would find me, potentially, for a very long time.

    I tried to scream but nothing came out. After what seemed to be ages, I heard about 3/4 of a second of loud static and passed back out. I woke up some short time “I think” later groggy but able to get up.

    But I have no idea people actually saw manifestations, I guess in retrospect what I had could have been worse.


  • I hate flatpacks worse than I hate snap

    I spent their better part of two days wourth of spare time trying to get OBS and flat packs to take plugins.

    To be honest, I only install stuff that I use everyday and randomly. For anything that’s part of a certain project or subsystem either use nix develop or nix shell.

    I have one that activates kdenlive, makes YTDLP available, FFmpeg, MPV, and then when I exit that shell all that stuff is no longer linked.

    Likewise I have oodles of rust and python projects that only bring into being what they need to get the work done.



  • Root can’t hit it simply, it’s mounted rw, with a RO mount inside. Root can just check add and remove stuff while running with nix commands.

    Basically, it you have a privileged access exoloit, it’s possible to target someone in ways you can’t in silverblue

    Some people have made ways to make it more immutable. You can do things like add user folders and etc to the store. Harden it a little more. I’m the end, priv can just modify config*.nix and run rebuild in the background changing whatever.

    Other os, you have to commit changes and actually reboot. Which gives you an opportunity to check for changes and deny. Or at least fully detect it happened.

    It’s not that it’s dangerously insecure, but it’s important to recognize it’s not actually bulletproof and targeted attacks are still quite possible. It’s LEAGUES more secure than regular OS, but you can’t go full LifeLock on it.







  • For me, it felt like old times. Bringing up slackware, then bringing up redhat, then fighting in laptop Nvidia and AMD drivers. I was scary how much of my existing knowledge was useless though. If you install it by the book, you can’t even run a linked library.

    I spent a couple of hundred hours learning how to configure it. I’ve been running it for around a year and a half. I’m still sub-par. First time around, 23.11, I installed home-manager as a flake. I got it up and running in a couple of hours, but managed to wedge myself when it was time for updates. I had written just enough weird nix language to make my configs not work in 24.05. I could get the OS to come up, but not home-manager. I started fresh, taking old configs item by item and re-implemented them via the docs fresh.

    When I got a new laptop, I booted off the USB, copied my home folder and grabbed configuration.nix and home.nix and it all just magically worked.

    That said, NGL, 25.05 has me a bit worried :) But at least I don’t have to fight Wayland this time.


  • NixOS: How do I install OBS?

    edit /etc/nixos/configuration.nix

    locate environment.systemPackages = with pkgs; [

    and add

    linuxPackages.v4l2loopback
    (wrapOBS {
      plugins = with pkgs.obs-studio-plugins; [
        obs-backgroundremoval
        obs-shaderfilter
        obs-vintage-filter
        
      ];
    })
    

    Then you need to install the kernel driver

    you can find the instructions here:

    https://nixos.wiki/wiki/OBS_Studio

    make sure you follow the part about boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];

    if you want to use the virtual cam driver.

    You may find out that you want to install this in home-manager or flakes instead, but those are novels themselves.

    edit: ohh yeah almost forgot run

    sudo nixos-rebuild switch

    after you edit the configs to install

    NixOS: How do I update the version of OBS after it’s installed?

    sudo nix-channel --update

    sudo nixos-rebuild switch

    If it breaks, the errors are mostly unhelpful, you need to poke around and make educated guesses.

    If it bricks you can go back to the previous version in grub by selecting the second to the top entry

    make sure you garbage collect every now and then or the app store gets huge.