]> git.phdru.name Git - dotfiles.git/blobdiff - .bashrc
.mc/menu: Verify detached signature
[dotfiles.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 69e4f157757fa258ac0249ffd343f04e3dd906ac..7a874bf93d1511cc1c6afa9e288d66d8a92d481e 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -207,25 +207,25 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
         if [ -n "$remote" ] && git config --get remote.$remote.url |
                 grep -q '^\(file:/\|/\|\.\./\)'; then # (file:/ or / or ../ at the beginning)
             cdgitpath remote.$remote.url
-        else
+            return
+        fi
 
-            if [ -n "$1" ]; then
-                echo "Cannot find directory for remote $1" >&2
-                echo "Usage: cdremote [remote_name]" >&2
-                return 1
-            fi
+        if [ -n "$1" ]; then
+            echo "Cannot find directory for remote $1" >&2
+            echo "Usage: cdremote [remote_name]" >&2
+            return 1
+        fi
 
-            _list_remotes '^\(file:/\|/\|\.\./\)' # (file:/ or / or ../ at the beginning)
-            if [ ${#GIT_REMOTES[*]} -eq 1 ]; then
-                remote=${GIT_REMOTES[0]}
-                unset GIT_REMOTES
-                cdgitpath remote.$remote.url
-            else
-                unset GIT_REMOTES
-                echo "Cannot find directory for any remote" >&2
-                echo "Usage: cdremote [remote_name]" >&2
-                return 1
-            fi
+        _list_remotes '^\(file:/\|/\|\.\./\)' # (file:/ or / or ../ at the beginning)
+        if [ ${#GIT_REMOTES[*]} -eq 1 ]; then
+            remote=${GIT_REMOTES[0]}
+            unset GIT_REMOTES
+            cdgitpath remote.$remote.url
+        else
+            unset GIT_REMOTES
+            echo "Cannot find directory for any remote" >&2
+            echo "Usage: cdremote [remote_name]" >&2
+            return 1
         fi
     }
 
@@ -295,3 +295,22 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
 
     complete -F _git_open_remote git-open-remote
 fi
+
+
+if [ "$SHLVL" -eq 1 -a "`type -t X`" = function ] && which startx >/dev/null 2>&1; then
+    # From https://stackoverflow.com/a/18839557
+
+    copy_function() {
+      test -n "$(declare -f "$1")" || return
+      eval "${_/$1/$2}"
+    }
+
+    rename_function() {
+      copy_function "$@" || return
+      unset -f "$1"
+    }
+
+    rename_function X _non_bash_X
+
+    X() { history -a; _non_bash_X; history -r; }
+fi