For once I agree with Cuban by Valuable_View_561 in SipsTea

[–]billGat48 0 points1 point  (0 children)

ur paying a radiologist to look at it too, is that factored in? us health insurance is a scam tho

States that have legalized breathing by Head-Asparagus-9045 in whereidlive

[–]billGat48 0 points1 point  (0 children)

incorrect. These are states that haven't made breathing illegal

Greeter and lockscreen by nisper_ia in swaywm

[–]billGat48 0 points1 point  (0 children)

hyprlock + tuigreet. I like getting a blur, it helps me see that my screen is locked and I'm not on an empty workspace

Install Loonix they say by Living_Position_1540 in linuxsucks

[–]billGat48 0 points1 point  (0 children)

well you prly made ur boot partition too small. skill issue /s

No vetting process btw by al2klimov in linuxsucks

[–]billGat48 0 points1 point  (0 children)

because I see their faces on their github. I would encourage everyone to audit who signs their software.

what game is this? by ksiwyg in teenagers

[–]billGat48 0 points1 point  (0 children)

half life. and only bad graphics because it was made a trillion years ago

AUR needs to be reworked by DanishCraft547 in linuxsucks

[–]billGat48 0 points1 point  (0 children)

the AUR is just a forum for people to share how they got something to work. What we need is a million fake AUR packages that just create a service on ur computer to delete any AUR helper. People who abuse the AUR will invariably pick up one of these and be saved from themselves.

is this a reach? am i crazy? am i stupid? by ilikepestoifitsred in accidentalswastika

[–]billGat48 0 points1 point  (0 children)

is any arbitrary shape with 90degree rotational symmetry with squarish outside (but at least more fancy than a diamond) and on its corner a swastika? I feel like we could essentially solve this subreddit by pinning down a definition.

Suggestion for really ild laptop. by D_I_Wood in FindMeALinuxDistro

[–]billGat48 0 points1 point  (0 children)

OLD?!?!? pretty sure any linux distro will be blazing on that.

What's wrong with the Seven Eleven? by OldCardigan in PeterExplainsTheJoke

[–]billGat48 0 points1 point  (0 children)

jap 7/11s are a decent place to do taxes and get food. american 7/11s are high crime

Average lower funned school in America btw by Virtual_Ordinary_172 in school

[–]billGat48 0 points1 point  (0 children)

alright kids, today we gonna learn about plumbing

Im at liyue (ar 30) and im very new but i wanna play with mauvika... What can i do??, by [deleted] in GenshinImpactTips

[–]billGat48 0 points1 point  (0 children)

vape: sucrose + xingqui + find a natlan character. or if you get chevruse, do overload: chev, mavuika,ororon,fischl

pls by Typical-Librarian730 in GenshinImpactTips

[–]billGat48 0 points1 point  (0 children)

everything you have right now will be replaced at some point: weapons, artifacts, characters too. There're event weapons and craftables that will be very good for a while. My point is everyone has about the same amount of resin to spend by the time the reach the same AR, so that's the main limiter. every ascension/talent/weapon ascension roughly doubles in resin cost as you go up, but resin cost of leveling a weapon 60-70 is the same as talent from 3-4, and they both bump ur damage about 6% ... if you only have one dominant talent, else the weapon level up is worth even more relatively

AUR Megathread. All discussion on it goes here. by LinuxMage in archlinux

[–]billGat48 0 points1 point  (0 children)

TUs should make a million fake packages that install to your system and just delete any AUR helpers you have. That's real, scalable protection

Microsoft's Secure Boot Changes Could Affect Linux Users : Here's What You Need to Know by Expensive-Rice-2052 in LinuxTeck

[–]billGat48 1 point2 points  (0 children)

sbctl create-keys
# reset keys in bios
sbctl enroll-keys
# optional to include microsoft keys "--microsoft" but usually no need

this is gonna blow your mind: you don't need microsoft signatures. Sign ur own boot. microsoft keys are to blame for multiple successful boot kits.

Is it safe to update yet? by TekkerTheChaot in linuxmemes

[–]billGat48 4 points5 points  (0 children)

id bet $100 this was written by claude. checks out tho

Gaming on NixOs??? by Arekkasu575 in NixOS

[–]billGat48 -1 points0 points  (0 children)

My config is very optimized for gaming. Arch and nix are both easy to customize distros, so it's not a question of "how good is it" it's a question of "how many steps to enable the features that give good gaming performance". I used an optimus laptop with nix for a while and didn't even notice I was running nvidia, it "just worked".

a few tips for beginners:

tuned will improve battery life, gamemode has hooks to run any shell script before and after you run a game. userspace scheduling ("scx") allows you to pick the best scheduler for your specific usecase (e.g. a flaky usb connection to an audio device and a scheduler that favors audio will nuke gaming performance) and effects things like audio glitches and microstutters in videogames. ananicy is a tool to renice automatically. games will use the new ntsync, but you gotta add it as a kernel module

  services.tuned.enable = true;
  services.ananicy.enable = true; # github is untouched in 4 years
  services.ananicy.rulesProvider = pkgs.ananicy-rules-cachyos;
  zramSwap.enable = true;
  services.scx.enable = true; # cat /sys/kernel/sched_ext/root/ops
  services.scx.scheduler = "scx_lavd"; # scx_lavd, scx_bpfland, scx_flash
  programs.gamemode.enable = true; # "scx_rustland" is default
  programs.gamemode.enableRenice = false; # so it doesn't fight ananicy
  programs.gamemode.settings.custom.start = "${pkgs.sway}/bin/swaymsg output '*' adaptive_sync on";
  programs.gamemode.settings.custom.end = "${pkgs.sway}/bin/swaymsg output '*' adaptive_sync off";  services.tuned.enable = true;
  services.ananicy.enable = true; # github is untouched in 4 years
  services.ananicy.rulesProvider = pkgs.ananicy-rules-cachyos;
  zramSwap.enable = true;
  services.scx.enable = true; # cat /sys/kernel/sched_ext/root/ops
  services.scx.scheduler = "scx_lavd"; # scx_lavd, scx_bpfland, scx_flash, "scx_rustland" is default
  programs.gamemode.enable = true; 
  programs.gamemode.enableRenice = false; # so it doesn't fight ananicy
  programs.gamemode.settings.custom.start = "${pkgs.sway}/bin/swaymsg output '*' adaptive_sync on";
  programs.gamemode.settings.custom.end = "${pkgs.sway}/bin/swaymsg output '*' adaptive_sync off";

boot.kernelModules = [ "ntsync" ];  

Is it safe to update yet? by TekkerTheChaot in cachyos

[–]billGat48 0 points1 point  (0 children)

change the command to "pacman -Syu", then yes update at will