Philip Waritschlager
Philip Waritschlager
When trying to run a windows program with wine, I get `LD_PRELOAD cannot be preloaded` (see below) ``` $ .wine/drive_c/Program\ Files\ \(x86\)/Steam/Steam.exe ERROR: ld.so: object '/home/phi/bin/stderred/build/libstderred.so' from LD_PRELOAD cannot be...
Updater
Allegedly, AppImage supports fetching new versions of the binary somehow. Will only add this if it's an interactive update though - fully automatic background updates are the worst.
```ahk SetKeyDelay, 300 ^!+s::Send, abcdefg ``` press hotkey briefly and then release again before the text has been typed completely: Once the send has completed, the initial modifiers are wrongly...
e.g. ```ahk settimer, loop, 500 loop: loop { sleep 100 echo %a_index% if a_index > 10 break } ``` prints ``` 1 2 3 4 0 0 0 0 0...
https://stackoverflow.com/questions/73497302/gtk-suppress-all-messages :-|
Reason: The /tmp folder still lives, but the window is gone. The program does not expect this to happen. Workaround: `rm -rf /tmp/__tkbash1.0_/` Solution: Either don't use `/tmp` or fix...
https://github.com/phil294/tkbash/blob/1172b8394f9f4dabd261ad65db9e5addf69ddc25/tkbash#L320 --- Besides, maybe the --command files could be put into memory instead of files at /tmp/__tkbash as it is right now. Then we could get rid of the folder...
So that multiple statements can be issued and parsed and executed at once. Doing this could improve the performance of tkbash many times over. This could be done with a...
``` $ tkbash 1 window --resizable 1 $ tkbash 1 window --resizable 0 ``` for some reason, window is not resizable afterwards