]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

add ipv6 flag to xterm title
authormartin f. krafft <madduck@madduck.net>
Mon, 16 Jun 2008 13:23:54 +0000 (15:23 +0200)
committermartin f. krafft <madduck@madduck.net>
Mon, 16 Jun 2008 13:23:54 +0000 (15:23 +0200)
.zsh/zshrc/80_xtermtitle

index 6496952b36d13bab6acd21d9ca5eb2ca00ddb382..e969c6d1704e9def2f7634574ca51f5bea05e09c 100644 (file)
@@ -27,6 +27,7 @@ __get_session_flags() {
   local flags; flags=
   [ -n "$DISPLAY" ] && flags="${flags}x"
   [ -n "$SSH_AUTH_SOCK" ] && flags="${flags}a"
+  [[ $SSH_CLIENT = *:* ]] && flags="${flags}6"
   [ -n "$flags" ] && echo "[${flags}]"
 }