Linux loads the gtk libs when your desktop starts because it's a major component of gnu/gnome. Windows doesn't until you launch an app that would use it. It's not a small library.
linuxmemes
Hint: :q!
Sister communities:
- LemmyMemes: Memes
- LemmyShitpost: Anything and everything goes.
- RISA: Star Trek memes and shitposts
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack members of the community for any reason.
- Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
- Bigotry will not be tolerated.
- These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
- Including Unix and BSD.
- Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of
sudo
in Windows. - No porn. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
Please report posts and comments that break these rules!
It's not a small library.
it's featherweight compared to Windows Desktop, tho
Sure... But the point is that it's an apples to oranges compare when half of gimp is loaded by the OS at boot under Linux and at runtime on Windows.
Does Gimp load slowly for people who use KDE?
I don't use KDE any more so I don't follow closely. But it used to be significantly slower. I recall some years back they were working to change KDE loading of gtk libs but I'm not sure what came out of that
pro-tip you can run gimp on WSL2 and have its xwindow appear within windows just like a normal application. The ONLY way to run gimp on windows imo.
https://learn.microsoft.com/en-us/windows/wsl/tutorials/gui-apps
How
Edge for Linux in WSL lmao how many layers do we need
Here is the WSLg repo if you're curious about how it works: https://github.com/microsoft/wslg
Basically, Microsoft take a Wayland compositor (Weston) and modify it to add support to enable automatic RDP connection to the Windows host. They also added support to RDP individual application window instead of the full desktop. The result is the Wayland compositor will render the application windows over RDP when you run any GUI app.
Everything loads slower on Windows. I've run programs through fucking Wine that still load faster than they do on Windows.
It's been a while since I've used GIMP, but I recall even loading it on Linux taking over a minute.
Sometimes it does take a few seconds for me as well, but not even close to a full minute. That must’ve been on an HDD, right?
It's never taken more than like 2 seconds to open on any of my computers
It’s been a while, so it may have been on a HDD.
Takes a while for me on Linux too. No idea if it's longer on Windows
Wait, so are people going to claim that the start-up speed is the problem with GIMP on Windows and not the god awful UI? This is the problem with the Linux crowd. You guys write software to write software and not because you are a user of that software. A clunky UI - which is far, far too common on open source applications - will cost someone a heck of a lot more than a few seconds in getting work done.
There's alot of irritation and bad general assumptions here lol. Krita, vlc, firefox, kdenlive etc exist and are amazing.
Gimp's ui is pretty bad though imo, even if it's good enough. I'd pirate and use photoshop as it is now if I could.
Is it a bad UI? Or is it a case of "I know where this thing is in Photoshop. Why isn't it in the same place in GIMP?"
wait people are supposed to use GIMP I think it was for that special level of hell for graphic designers
Yes, it's a common complaint that it doesn't use GTK 4 yet, it's still on GTK 2.
I tried to use GIMP when my PS sub ran out and I NEEDED to get some pics edited. Good GOD it took me way too long to get used to the workspace. Workflow was cut ion half, I guess that's a thing with any new program but it took me like maybe a minute to figure out Darktable when I switched from LR.
What fixes would you apply to GIMP's UI to make it better and more convenient to use?
Follow industry "standards" that have existed for literally 3 decades.
And yes, when a piece of software dominates it's particular industry as much as Photoshop does, it is considered a standard.
And to be clear, GIMP is just one of many such pieces of software that quite frankly are awful from a users perspective. Some will claim that "oh well it's simply because it's new software" but it's far, far more than that and it shows a complete disconnect between those who write the software and those who use the software.
I find it curious that a way better alternative to GIMP is the browser-based Photopea which is partially open source. It doesn't have the speed for heavy work because it runs in your browser, but because it mirrora Photoshop, it's workflow is far more natural to someone who edits photos for a living. Doing a quick search it looks like a single person worked on Photopea, while almost 100 people over many more years have been working on GIMP. One is typical open source software - a bunch of people trying to learn a bit of programming, trying to flex their skills but clearly not actual graphic artist.
What specs do you have that makes GIMP load in 2 milliseconds?
Obviously it's an exaggeration, takes about 2 seconds for me
Just tested it, something between 1 and 2 seconds for me.
I just switched to linux it is incomparably faster. I just deleted the built in paint program because it is useless, way easier to just load gimp in 1 second. Libreoffice is also faster, although not that much faster.
Libreoffice is heavy, still loads much faster than MS Office tho
Everything seems to be way faster on Linux than on windows for some reason.
On one occasion I tested a build that took ~10 min on windows, in a Linux VM installed on the same machine, it finished in ~1min.
I have searched around for an answer for quite some time now, I could not find any definitive reason. Some say that process creation is slower on windows, some say IO is inefficient. Still struggling to explain 10x increase in throughput.
Here is a funny instance: https://emacs.stackexchange.com/questions/17783/why-does-emacs-take-longer-to-start-on-windows-than-on-linux
IMO it's because Windows is targeted for general use so they don't bother optimizing anything. They'll just convince people that thei have aging hardware when things become slow and say stuffs like "unused RAM is wasted RAM" to justify taking up half of my memory on idle.
Even running Linux from a USB is still a way smoother experience than running Windows for me.
I thinks it caused by two reasons:
- process creation has much higher overhead on windows. On top of that, the antivirus system adds additional overhead not present in Linux because it scan every process on launch and monitor its behavior until the process finished. This result in any workflow that relies on launching a bunch of processes (e.g. make-style compilation which launch the compiler process recursively) to be very slow on Windows.
- file access on windows is also significantly slower on windows due to its filesystem filter. Also, antivirus typically hook into this filter and inspect every opened files. You can imagine this would result in significant slowdown for any workflow that relies on opening a lot of small files (e.g. compilation)
If you disable the antivirus (including windows defender) performance would definitely improve, but it'll still slower than on Linux.
In order to gain sufficient performance in windows, you'll have to use threads instead of processes (basically a single program doing everything instead of chaining multiple program Unix-style) and put your data in a single file so it can load all at once instead of in a bunch of small files loaded recursively. Basically a complete opposite of what people do on Linux.
for some reason.
bloat
I ran Atlus for a second before installing PopOS and Windows can be just as fast if you remove literally everything
Atlus suffers from the fact that it's still just windows though so all the underlying issues are still there.
Am I going crazy or something? Gimp loads in under 5 seconds on windows for me, and that's with an absurd amount of crap (unity, blender, a vm, and 400+ browser tabs across 5 browsers) running in the background.
Gimp loads in 500ms for me, on linux running on a mid-range SSD-using laptop.
Me: Export this 256x256 PNG.
Gimp on windows: Bro, you'd better get a drink and a snack.
I think you need a better PC my man. Takes me under a second for images upwards of 2000x2000.
Nope this is truth. even with SSD on my part
Kind of funny because I was using an old laptop earlier to recover a partition that Mac fucked up.
Instead of clicking GParted, I accidentally clicked GIMP. For a Core2Duo computer with 4GB RAM, 2 seconds wasn't an exaggeration.
Distro was Manjaro.
still faster than Photoshop tho, but most of the time I use MS Paint 3D anyway