From 9d8fb8bc31a1ec7fecc0b6e938b30d2278021e48 Mon Sep 17 00:00:00 2001 From: codesoap Date: Tue, 18 Jun 2019 11:41:59 +0200 Subject: [PATCH] Print escape sequence to set the window title Using xdotool was probably a little less portable, because it relied on the newly created window to be activated by the window manager. --- rc/windowing/repl/x11.kak | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rc/windowing/repl/x11.kak b/rc/windowing/repl/x11.kak index 1fcea07b..451259bc 100644 --- a/rc/windowing/repl/x11.kak +++ b/rc/windowing/repl/x11.kak @@ -15,9 +15,8 @@ All optional parameters are forwarded to the new window} \ exit fi if [ $# -eq 0 ]; then cmd="${SHELL:-sh}"; else cmd="$@"; fi - setsid ${kak_opt_termcmd} \ - "xdotool getactivewindow set_window --name kak_repl_window \ - && exec \"${cmd}\"" < /dev/null > /dev/null 2>&1 & + setsid ${kak_opt_termcmd} "printf '\e]2;kak_repl_window\a' \ + && ${cmd}" < /dev/null > /dev/null 2>&1 & }} define-command x11-send-text -docstring "send the selected text to the repl window" %{