]> git.phdru.name Git - dotfiles.git/blobdiff - .bashrc
.bashrc: Indent 4 spaces
[dotfiles.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 4f3d23ee8c68c32a1e80a900534d17b4dc7c31f0..f1614c8cc87f611affab941799080df18c507c77 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -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