win-shim
win-shim copied to clipboard
Lightweight and customisable shim executable for Windows.
This PR fixes #12. Basically it makes two small changes: 1. Copy icon groups from the input executable in addition to ordinary icons: ```cpp raw_copy(other, RT_GROUP_ICON); ``` 2. Remove the...
This fix #14 I’ve just remove all process limitations because the issue occurs as soon as I add any one of them. I’ can’t explain exactly why those execution limitations...
Make a shim of an application with a UI like notepad `shmake.exe -i notepad.exe -o sample.exe` - Open it - Write some text inside and copy/paste it. It works. -...
This PR fixes #10 and also supersedes #8. Unlike #8, it doesn't bring `boost::algorithm` dependency to the shim code, keeping it small and lightweight. If the changes look good to...
1. Make a shim pointing to any app with icon, say Notepad: ``` shmake.exe -i notepad.exe -o sample.exe ``` 2. Open Explorer and check the mirrored icon of the generated...
Hey @aloneguid, Thank you for this little gem! This is the only opensource alternative to Chocolatey shim generator I've managed to find! While playing with the tool, I've faced several...
I discover that args are not "passed through as is by default", as mentioned in the documentation. By documentation I mean at least what we can read when executing `shmake...
This PR is another take to fix #7. If the user haven't specified `-a` option to `shmake` then the generated shim acts as if `-a %s` was specified. The PR...