aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-01-02 23:33:49 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-01-02 23:33:49 +1300
commitf951cb7a71583e5384f8f26110cc4b16a0f05304 (patch)
tree21929506193865aa29d976be6037f32480637000
parentMerge branch 'release/v4.5.0' into develop (diff)
parentBump VERSION (diff)
downloaddotfiles-f951cb7a71583e5384f8f26110cc4b16a0f05304.tar.gz
dotfiles-f951cb7a71583e5384f8f26110cc4b16a0f05304.zip
Merge branch 'hotfix/v4.5.1' into develop
* hotfix/v4.5.1: Bump VERSION Use short switches for emacs server pgrep
-rw-r--r--VERSION4
-rw-r--r--sh/profile.d/visual.sh3
2 files changed, 3 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index 0666ce00..3a5682ba 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v4.5.0
-Wed Jan 2 10:29:09 UTC 2019
+tejr dotfiles v4.5.1
+Wed Jan 2 10:33:20 UTC 2019
diff --git a/sh/profile.d/visual.sh b/sh/profile.d/visual.sh
index 359bf13a..899437af 100644
--- a/sh/profile.d/visual.sh
+++ b/sh/profile.d/visual.sh
@@ -5,8 +5,7 @@ if command -v emacs >/dev/null 2>&1 &&
# Use or start a GNU Emacs client, if possible
if command -v pgrep >/dev/null 2>&1 &&
- pgrep --exact --full --euid="$USER" \
- 'emacs --daemon' >/dev/null ||
+ pgrep -fxu "$USER" 'emacs --daemon' >/dev/null ||
emacs --daemon >/dev/null ; then
VISUAL=emacsclient