Earlier quoted context omitted.
Ahh the DOS days are long gone I'm afraid... A single 1024x1024 app icon on Mac OS X weighs in at 4MB once it's inflated to raw bitmap data from ICNS / PNG. Throw a couple of those onscreen at once in a list and you're looking at 30MB easy, and that's just in images! Of course, you could leave out the images, but you could also just keep using DOS if RAM is a concern :-)
Are icons 1024x1024 now?! And I still think 64x64 sounds kind of big for an icon, heh. I really need to get with the times, and get a lawn I guess.
An 'alt+space' launcher for Windows, built with Electron
31–40 of 65 posts
Re: An 'alt+space' launcher for Windows, built with Electron
#32Earlier quoted context omitted.
Or maybe some people just want to make a cool project for themselves and learn stuff along the way.
I'm replying to two people upset about the ridiculous resource usage of simple modern programs. Bring it up-thread if you want to defend against literal waste, I'm just talking about why it happens.
Re: An 'alt+space' launcher for Windows, built with Electron
#33Windows Key then type. No need to create a Chrome instance just to launch a program.
Re: An 'alt+space' launcher for Windows, built with Electron
#34Re: An 'alt+space' launcher for Windows, built with Electron
#35Re: An 'alt+space' launcher for Windows, built with Electron
#36Re: An 'alt+space' launcher for Windows, built with Electron
#37As others have pointed out, there are stuff that should not be made with Electron and this is one type of app that just shouldn't. If it is platform specific anyways, why not do it in like C# or something that would make it lighter and faster?
Re: An 'alt+space' launcher for Windows, built with Electron
#38Re: An 'alt+space' launcher for Windows, built with Electron
#39Earlier quoted context omitted.
Launchy doesn't require you to install npm first.
I don't think you're intended to build it from source - you can just get a binary: https://github.com/appetizermonster/Hain/releases
That is my main complaint against anything Node.js: after having struggled with Node.js before I don't feel like building anything bsed on it.
Guess I'll stay with Launcy (or even the new Windows start menu) but this sorts most of my issues.
Re: An 'alt+space' launcher for Windows, built with Electron
#40i really love these launcher apps. this one sort of illustrates the problem with developing windows apps: - you either learn complicated c++ and windows api and have to write your own rendering framework for custom components - or use C# and xaml and get terrible performance with systems with no gpu acceleration - or use VB for terrible performance and CPU usage - or use javascript and node for huge memory usage and…