cypherpunks,
@cypherpunks@lemmy.ml avatar
xavier666,

Gigachad 🗿

FrankTheHealer,

Imagine using Windows 😤😤

$ Flatpak install Firefox

countdankula420,

This is the way

ColdWater,
@ColdWater@lemmy.fmhy.ml avatar

Imagine having to spend 30 minutes just to run a specific software from Windows

Chadus_Maximus,

Tell me how to beat anticheat on Linux? Cuz that’s the only thing keeping me.

mun_man,

Which games do you play? The only game holding me back was tarkov but I randomly decided to put Linux on one of my drives to see what I could/couldn’t do and I was able to get it working with proton. Probably going to switch over completely soon after I play around with it a bit more

Chadus_Maximus,

Path of Exile, MapleStory, League of Legends, WoW private servers song other things.

MazonnaCara89,
@MazonnaCara89@lemmy.ml avatar

League of Legends does work under linux without any anticheat issue, there is even a script done for lutris and an aur package to setup the game, on lemmy there is leagueoflinux where to ask for help.

CalcProgrammer1,
@CalcProgrammer1@lemmy.ml avatar

Path of Exile works great on Linux.

schmensch,

If your games are on Steam, check ProtonDB.

If not, you’re probably out of luck, but check recent Search Engine results. Best to limit results to around last 6 months, otherwise you’ll probably get outdated information. Only a few bigger non-steam multiplayer shooters work, I can only think of Overwatch right now.

Flippydoo,

Give me a little LPT - how do you search for results within a date range?

MazonnaCara89,
@MazonnaCara89@lemmy.ml avatar

To see if the games with anticheat that you want to play are supported on linux, check areweanticheatyet.com they have a pretty huge list of anticheat status where are listed supported, unsupported and denied games.

stappern,

Very easy,don’t play those games :)

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

sudo pacman -S firefox

Thann,
@Thann@lemmy.ml avatar

-Syu bruh

shinobizilla,

For work, I have no option other than Windows. Right now, I use a mix of WSL2, winget, scoop to get around which is nice. I get to ignore most of the rough edges of Windows lol

FrankTheHealer,

Yeah thats fair enough. Exceptions can be made for work lol.

UnaSolaEstrellaLibre,

Is winget installed by default on Windows now?

otterpop,

Yes, finally it comes with a package manager by default!

michaelrose,

Only 24 years later

Uniquitous,

Well shit, now there’s nothing left for Edge to do.

mdwalters,
@mdwalters@pawb.social avatar

windows users installing a web browser: then vs now

Thann,
@Thann@lemmy.ml avatar

maybe in a decade linus from LTT will be able to use a package manager

Number358,
Thann,
@Thann@lemmy.ml avatar

lol if he can use them on windows this easily he was clearly trying to fuck it up on linux

Nothingwise,

Scoop is preferred as it provides versioning and user installs compared to winget which are typically machine wide and require administrative roles.

FlexibleToast,

Versioned and doesn’t need admin… I’ve been happy with chocolatey, but this sounds interesting.

Sarcasmo220,

Firefox is installed by default on my Linux distro, though

TooLazyDidntName,

If you have Ubuntu though you still gotta uninstall the snap version of Firefox and switch it to the deb version

UnelectedReimu,

or enable flatpaks >:)

FlexibleToast,

But still remove the snap version.

Flippydoo,

Is this something everyone should know to do? Or just style points for programmers?

Tamlyn,
@Tamlyn@feddit.de avatar

At the moment i like choco more than winget, so winget is now the tool to install choco???

GoumLeChat,

winget uses official repos, choco uses its own community-maintained repo.

Tamlyn,
@Tamlyn@feddit.de avatar

I write at the moment, because the it’s good that microsoft finally has a package manager. But even though choco is community maintained, it’s quite good and has a lot things microsoft not yet has. But what annoys me the most with winget ist, that the package names outside of the store packages have horrible names. But you are correct, official is better.

GoumLeChat,

Yeah I really like choco as well, I have my little script to keep softs updated, I haven’t spent much time with winget yet. I might be wrong but I think Choco installs software in specific folders instead of the usual C:\Programs or Appdata ?

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

You don’t have to know how to do it unless you want to install Firefox on Windows without ever having to open Edge. In that case, this is one way to do it.

UnelectedReimu,

using winget is a much safer and faster way to install new software. yes command prompt seems intimidating but it’s super easy, you don’t need 1337 hack0rz skillz to use it

hlqxz,

Do you know why there are multiple packages named similar to the original ones? For example there are multiple Vim packages in the winget repository which makes it confusing.

FlexibleToast,

More like sysadmins not programmers. I’ve met plenty of programmers that write brilliant code, but don’t know how to manage computers very well.

Flippydoo,

Gotcha. I don’t know the difference between all the techy jobs, you all just do various forms of magic to my muggle brain.

jdeath,

in case anyone wants the mac equivalent brew install --cask firefox of course first install xcode and brew

pimeys,
@pimeys@lemmy.nauk.io avatar

Just casually having Firefox with plugins and settings described in my NixOS config.

github.com/pimeys/nixos/blob/main/…/default.nix

Works always the same.

nosurf,

Man nix looks soo damn cool. I just dont know if id ever actually use it. But a versioned controlled OS seems so sweet.

Can you use it to choose desktop environment as well?

Xylight,
@Xylight@lemmy.xylight.dev avatar

Yep. To change desktop environments, just change:

<pre style="background-color:#ffffff;">
<span style="color:#323232;">services.xserver.gnome.enable = true;
</span>

to

<pre style="background-color:#ffffff;">
<span style="color:#323232;">services.xserver.plasma5.enable = true;
</span>
<pre style="background-color:#ffffff;">
nosurf,

Wow. Im gonna try it out in a vm even if i have no use for it. That is crazy.

Xylight,
@Xylight@lemmy.xylight.dev avatar

It’s really nice. When you setup a new system, you don’t have to spend hours changing settings, configs, and installing packages. With NixOS, just copy the config file from your old system and then run nixos-rebuild.

pimeys,
@pimeys@lemmy.nauk.io avatar

I really wish the default template switches to flakes soon. Using flakes is a must for the best experience, and converting the default config is at best a hassle and for newbies a huge mountain to cross.

pimeys,
@pimeys@lemmy.nauk.io avatar

This is cool because it gets rid of all the packages when you switch. There is nothing left of Gnome when you switch to KDE.

pimeys,
@pimeys@lemmy.nauk.io avatar

You can. I run sway and it is configured through nix:

github.com/pimeys/nixos/blob/main/…/default.nix

Gnome design makes it a bit harder, but not impossible:

hoverbear.org/…/declarative-gnome-configuration-i…

Somebody doing the same for KDE:

github.com/LunNova/nixos-configs/…/kdeconfig.nix

So the answer to your question is yes. It is possible and kind of required to go the full nix route with NixOS. It might not always be super straightforward with large DEs, and for sure works much better with window managers that already utilize text configuration.

HappyFrog,

Damn, nix is starting to look better each time I hear about it.

Dxthegod,
@Dxthegod@lemmy.world avatar

“I used Firefox to download Firefox”

Dxthegod,
@Dxthegod@lemmy.world avatar

“I used Firefox to download Firefox” - Thanos

raubarno,

based windows

spike,
@spike@discuss.tchncs.de avatar

Real OSes come with Firefox pre-installed!

Emu,
@Emu@lemmy.ml avatar

deleted_by_moderator

  • Loading...
  • Contend6248,

    Oh no :(

    Rooty,

    “It’s a meme Batman.”

    stappern,

    Wtf

    Im28xwa,

    Man I love WinGet I just hope they add multi-threaded download to speed up downloads also downloading while installing other applications

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • [email protected]
  • Food
  • aaaaaaacccccccce
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • oklahoma
  • feritale
  • KamenRider
  • Ask_kbincafe
  • TheResearchGuardian
  • KbinCafe
  • Socialism
  • SuperSentai
  • All magazines