X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/c0bfd3fedf1593ca2878e53b176b625a87b7f097..dd6dcbd457b22b4d7398329c1d2457781b3d8de4:/etc/zsh/.zshrc?ds=inline diff --git a/etc/zsh/.zshrc b/etc/zsh/.zshrc index 21b5964..ab3d7ef 100644 --- a/etc/zsh/.zshrc +++ b/etc/zsh/.zshrc @@ -244,10 +244,10 @@ if [[ "$OSTYPE" =~ '^freebsd' ]] { # ps if [[ -v commands[pstree] && $commands[pstree]:A:t != busybox ]] { # use pstree, but NOT busybox pstree because it kinda sucks - ps="pstree -wg3" + ps='pstree -wg3' } elif [[ "$OSTYPE" =~ '^freebsd' ]] { - ps="ps -aSdfxwwouser=USR -ogroup=GRP -opid,nice=NI \ - -o%cpu,%mem,tty,stat,start=START -oetime,command" + ps='ps -aSdfxwwouser=USR -ogroup=GRP -opid,nice=NI \ + -o%cpu,%mem,tty,stat,start=START -oetime,command' } elif [[ $commands[ps]:A:t == busybox ]] { # busybox compatible ps="ps -eouser='USR ' -ogroup='GRP ' \ @@ -256,8 +256,8 @@ if [[ -v commands[pstree] && $commands[pstree]:A:t != busybox ]] { } else { # XXX: untested, posix # TODO: support gnu ps - ps="ps -eouser=USR -ogroup=GRP -opid,nice=NI \ - -opcpu=CPU -ovsz=MEM -otty,stat,etime,comm" + ps='ps -eouser=USR -ogroup=GRP -opid,nice=NI \ + -opcpu=CPU -ovsz=MEM -otty,stat,etime,comm' } if [[ "$(basename "$PAGER")" = "less" ]] { ps="$ps | less -S"