all repos — nixfiles @ 4e3bd398ca7a1d6625bb51f05921d3b1324e811f

System and user configuration, managed by nix and home-manager

zsh: set/re-set terminal title from ssh/mosh on Darwin
Alan Pearce alan@alanpearce.eu
Tue, 13 Apr 2021 13:51:43 +0200
commit

4e3bd398ca7a1d6625bb51f05921d3b1324e811f

parent

533ae2186750c603f560301997f02e8328f5ad38

2 files changed, 31 insertions(+), 1 deletions(-)

jump to
M user/settings/zsh.nixuser/settings/zsh.nix
@@ -237,7 +237,11 @@       source ${pkgs.fzf}/share/fzf/key-bindings.zsh
       source ${pkgs.fzf}/share/fzf/completion.zsh
 
-    '' + builtins.readFile ../zsh/zshrc;
+    '' + builtins.readFile ../zsh/zshrc + (
+      if stdenv.isDarwin
+      then builtins.readFile ../zsh/zshrc.darwin
+      else ""
+    );
   };
 
   home.file."${zshrc}".onChange =
A user/zsh/zshrc.darwin
@@ -0,0 +1,26 @@+set_title () {
+  print -Pn "\e]0;$1\7\n"
+}
+ssh () {
+  local arg server retval
+  for arg
+  do
+    if [[ "${arg#-}" == "$arg" ]]
+    then
+      server=$arg
+      break
+    fi
+  done
+  set_title "file://${server}/"
+  command ssh "$@"
+  retval=$?
+  set_title
+  return $retval
+}
+mosh () {
+  command mosh "$@"
+  retval=$?
+  set_title
+  return $retval
+}
+