Snoweuph
Snoweuph
Getting the Scale of the Desktop from the Window, instead of from the Desktop object. Thats how GLFW does it. The Desktop Scale on the Dekstop object can't hold Fractional...
Also doesn't work with the latest Cosmic build on Nixos. It looks like Cosmic doesn't havethe global shortcuts protocol so far:
looks like its unable to get access to keyboard input, even, when it is run in x11 mode. ```sh > ./awakened_poe_trade.appimage --ozone-platform=x11 awakened_poe_trade.appimage installed in /home/snoweuph/.cache/appimage-run/5c49f10e8f0d8edfebeed991c5b28c34aa86fd8525739f53258ffb9a388ec971 hook_thread_proc [101]: Could not...
the default way to indicate choice paramters in bash scripts normally is to use `--cake {foo|bar|bazz}` but thinking a bit more, it doesn't make sense to use it as the...
I can think about some usecases where variadic choice values could be usefull but only as long all values are unique.
I can not think of any case where it would be smart to use variables or function output as allowed values. but I can think of cases where they might...
> I can not think of any case where it would be smart to use variables or function output as allowed values. but I can think of cases where they...
updating my example from above to fit the new ideas would look something like: ```just # run the required tests on the required db [group('qs')] test db['sqlite','postgres','mysql']='sqlite' +type['unit','integration','e2e']: ``` and...
as `just` already has a `--choose` option and some infrastructure around `fzf`, i guess it would be nice to allow using the chooser with something like? ```just run example['blinky', 'ble',...
I shortly thought > actually, when using choice as a default value, there would be no need to define the valid parameters but that is not true, as it would...