Results 216 comments of Tavis Ormandy

Hmm - clipboard integration in particular seems like a good match for an `int 6e` helper, I really like that idea. That's definitely on my list of things to add!

I have really basic ascii art graphics working, it's not complete but it actually works! Even pie charts work lol! ![123-sinewave](https://user-images.githubusercontent.com/123814/110575388-a1921800-8113-11eb-93ba-00fdbc1ad179.gif)

If you want it to run on startup, just copy the binary into `%USERPROFILE%\Start Menu\Programs\Startup` (you can paste that into an explorer window to get to the right place). ![screenshot](https://user-images.githubusercontent.com/123814/40591052-e28aaa60-61be-11e8-9c0f-ce11d046e82a.png)...

I used `AC_PATH_PROG` because I wanted to write a test that would run `nm -D` to see if bash exported some symbols I needed (It's a common error for packagers...

If you press Ctrl+Alt+C it should disable the hotcorner, if that's what you're looking for.

I'm a bit confused, it doesn't even get to trying to load it, that error is just from trying to compile it... (If it compiles successfully, then it tries to...

Here's the test that it's running: https://github.com/taviso/ctypes.sh/blob/master/configure.ac#L105

Probably something like this, if you don't mind hardcoding the resolution: ``` static const RECT kHotCorner = { .top = YourVerticalResolution - 20, .left = -20, .right = +20, .bottom...

You want the corner to be moved when you change resolution automatically? I understand now. Hmm, to do this I think you will need to handle `WM_DISPLAYCHANGE`, this isn't difficult,...

I should add these to a wiki page in case someone else wants the same thing as you.