From feebad14b057b216449b63485a35d831e9a7859f Mon Sep 17 00:00:00 2001 From: codesoap Date: Tue, 18 Jun 2019 09:54:19 +0200 Subject: [PATCH] Set the REPL window title using xdotool As mentioned in issue #2973, the -t argument for setting the terminal title was not very portable. --- rc/windowing/repl/x11.kak | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rc/windowing/repl/x11.kak b/rc/windowing/repl/x11.kak index 54966c2a..1fcea07b 100644 --- a/rc/windowing/repl/x11.kak +++ b/rc/windowing/repl/x11.kak @@ -15,7 +15,9 @@ 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} ${cmd} -t kak_repl_window < /dev/null > /dev/null 2>&1 & + setsid ${kak_opt_termcmd} \ + "xdotool getactivewindow set_window --name kak_repl_window \ + && exec \"${cmd}\"" < /dev/null > /dev/null 2>&1 & }} define-command x11-send-text -docstring "send the selected text to the repl window" %{