this post was submitted on 08 Sep 2023
174 points (97.3% liked)

Open Source

29009 readers
225 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 4 years ago
MODERATORS
 

I am and all my life have been a Linux user, I have nothing against Windows or MacOS, I just like Linux, and lately I have been experimenting with Windows in a virtual machine and I don't really know much open source software there apart from the one that is cross-platform like Firefox or Joplin.

At the moment I know:

Flow Launcher: It's a typical rofi style launcher, although I'm not a TWM user I like to just press super and type the first letters of the program I'm looking for to open it.

Lively Wallpaper: A program to have animated wallpapers, in the style of Wallpaper Engine.

Edit: I want to clarify that I read all the comments, I only respond to some because many times I have nothing to contribute to many of them because I don't know what to comment. Thanks to all of you for providing your lists of programs, I will be sure to try as many as I can because they are great, at least I know what to install if I use Windows one day!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 10 months ago (3 children)

For package management I've been really liking scoop.sh

Not everything in there is FOSS but scoop itself is! And you can install neovim, vscodium, bitwarden, Firefox, etc very easily.

[–] [email protected] 4 points 10 months ago (1 children)

How does it compare to chocolatey? Thanks.

[–] [email protected] 3 points 10 months ago (1 children)

it doesn't trigger UAC because the installation directory is different

[–] [email protected] 1 points 10 months ago

Some items trigger UAC (installing tailscale, for example)

I love that everying lives in ~/scoop. It's well organized and somewhat portable (until you import the nonportable bucket)

[–] [email protected] 2 points 10 months ago

One great thing about scoop is that downgrading an app is very easy. You can also manage multiple versions of a runtime, for example, you can install multiple Node.js versions and switch between them with scoop reset command.

[–] [email protected] 1 points 10 months ago* (last edited 10 months ago) (2 children)

It definitely looks like the first program that should be installed when doing a clean install of Windows!

I recently found out about winget, how is winget different from scoop? Apart from of course, the number of packages and that anyone can contribute to it.

[–] [email protected] 3 points 10 months ago* (last edited 10 months ago)

Winget is from Microsoft for one (and already installed with Windows). It basically just downloads the regular windows installer and installs it like usual without the need to click user feedback prompts. Scoop is more of a package manager.

With winget, one nice thing is you can even update packages not installed with winget originally. You can see which apps on your computer have updates available with a single command.

It’s great when you’re updating someone else’s computer they haven’t updated random things in years (typical windows users).

Scoop essentially uses portable apps and everything is in your scoop folder which is great.

I use both. Scoop first and winget for everything else. I use winget to update Libreoffice on all our work computers (because the devs won’t work on auto updates).

[–] [email protected] 1 points 10 months ago

I felt like winget was too limited. When I last used it it didn't support installing multiple apps at the same time. scoop feels much more like traditional *nix package management to me, which I like.