diff options
Diffstat (limited to '_zsh/40-functions.zsh')
-rw-r--r-- | _zsh/40-functions.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_zsh/40-functions.zsh b/_zsh/40-functions.zsh index 83615ae..cbf15ad 100644 --- a/_zsh/40-functions.zsh +++ b/_zsh/40-functions.zsh @@ -16,7 +16,7 @@ function exists() { ## Check whether the program is running function is_running() { - pgrep -x -u "${USER}" "$1" /dev/null 2>&1 + pgrep -x -u "${USER}" "$1" >/dev/null 2>&1 } |