1ee03086d3e2

Update
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sat, 21 Jul 2018 02:30:40 +0000
parents 62f9d2267878
children 780bfe81d98a
branches/tags (none)
files README.markdown

Changes

--- 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.