]> 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:

only set flags for ssh connections
authormartin f. krafft <madduck@madduck.net>
Mon, 5 May 2008 11:59:17 +0000 (12:59 +0100)
committermartin f. krafft <madduck@madduck.net>
Mon, 5 May 2008 11:59:17 +0000 (12:59 +0100)
.zsh/xterm-title

index 07755a68495681ccc510f2e90f69e9eca78e55f1..631c6515c60d8a7a0dcc901e4933dcd17e93e9f8 100644 (file)
@@ -23,10 +23,11 @@ __set_xterm_title() {
 }
 
 __get_session_flags() {
-    local flags; flags=
-    [ -n "$DISPLAY" ] && flags="${flags}x"
-    [ -n "$SSH_AUTH_SOCK" ] && flags="${flags}a"
-    [ -n "$flags" ] && echo "[${flags}]"
+  [ -n "$SSH_CONNECTION" ] || return
+  local flags; flags=
+  [ -n "$DISPLAY" ] && flags="${flags}x"
+  [ -n "$SSH_AUTH_SOCK" ] && flags="${flags}a"
+  [ -n "$flags" ] && echo "[${flags}]"
 }
 
 __get_standard_prompt() {