# HG changeset patch # User Steve Losh # Date 1575217309 18000 # Node ID 7e61dbfc9438bff096f274835c4f30b1f4577778 # Parent ab8f9b3dbba2ef2fdb62007500533b668c8d77b2# Parent addae1d12a7c4a17059eaccbbdd3c20505aac279 Merge. diff -r ab8f9b3dbba2 -r 7e61dbfc9438 bin/t --- a/bin/t Sun Dec 01 11:21:41 2019 -0500 +++ b/bin/t Sun Dec 01 11:21:49 2019 -0500 @@ -2,4 +2,4 @@ set -euo pipefail -python ~/src/t/t.py --task-dir ~/.plan --list TODO "$@" +python ~/src/t/t.py --task-dir ~/plan --list TODO "$@" diff -r ab8f9b3dbba2 -r 7e61dbfc9438 bin/ws --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/ws Sun Dec 01 11:21:49 2019 -0500 @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +set -euo pipefail + +python -c 'import sys; sys.stdout.write(sys.stdin.read().strip())' diff -r ab8f9b3dbba2 -r 7e61dbfc9438 stumpwmrc --- a/stumpwmrc Sun Dec 01 11:21:41 2019 -0500 +++ b/stumpwmrc Sun Dec 01 11:21:49 2019 -0500 @@ -7,8 +7,7 @@ ;;;; Config ------------------------------------------------------------------- (set-prefix-key (kbd "C-space")) - -(redirect-all-output (data-dir-file "debug" "text")) +(redirect-all-output (data-dir-file "debug" "log")) (setf *mouse-focus-policy* :click *message-window-gravity* :center @@ -299,11 +298,12 @@ (only) (loop with laptop = "eDP1" with extern = "DP1" - for (output commands) in `((,extern ("--auto")) + for (output commands) in `( + (,laptop ("--off")) + (,extern ("--auto")) (,extern ("--primary")) - ;; (,laptop ("--off")) - (,laptop ("--auto")) - (,laptop ("--right-of" ,extern)) + ;; (,laptop ("--auto")) + ;; (,laptop ("--right-of" ,extern)) ) do (uiop:run-program `("xrandr" "--output" ,output ,@commands))))