# HG changeset patch # User Steve Losh # Date 1532140240 0 # Node ID 1ee03086d3e2dfa188869cb753b6b20029b9c9fe # Parent 62f9d22678780ac768123fb3f87865e2f5a766bb Update diff -r 62f9d2267878 -r 1ee03086d3e2 README.markdown --- a/README.markdown Fri Jul 20 14:14:07 2018 +0000 +++ b/README.markdown Sat Jul 21 02:30:40 2018 +0000 @@ -176,3 +176,17 @@ is the Nano: that's plugged into my desktop monitor that I use for a KVM, so whenever I switch the computers or turn off the monitor it'll lock. I think that's a good enough mix of practicality and security for what I need. + +## 2018-07-20 + +Finally got around to fixing StumpWM's frame splitting/removing/balancing. Got +a work-in-progress/proof-of-concept PR at https://github.com/stumpwm/stumpwm/pull/481 + +Debugged why my `scrot` keyboard shortcuts that work fine on Debian weren't +working on my Ubuntu machine. It took a while because shell commands you run +through StumpWM's key mappings have their output blackholed to god only knows +where. Eventually I split the commands into a separate shell script and +redirected all the output to a file (I should have done this much earlier), +which let me see giblib complaining about the keyboard being busy. Once I found +that error it led me to https://bbs.archlinux.org/viewtopic.php?id=86507 which +shows a solution: add a `sleep 0.2` before the call to `scrot`. Jesus.