fixed shellcheck warnings
This commit is contained in:
parent
8390d37ed8
commit
71a2b76681
1 changed files with 3 additions and 3 deletions
|
@ -527,13 +527,13 @@ run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration'
|
||||||
# _loadavg() {
|
# _loadavg() {
|
||||||
# case $(uname -s) in
|
# case $(uname -s) in
|
||||||
# *Darwin*)
|
# *Darwin*)
|
||||||
# tmux set -g @loadavg $(sysctl -q -n vm.loadavg | cut -d' ' -f2)
|
# tmux set -g @loadavg "$(sysctl -q -n vm.loadavg | cut -d' ' -f2)"
|
||||||
# ;;
|
# ;;
|
||||||
# *Linux*)
|
# *Linux*)
|
||||||
# tmux set -g @loadavg $(cut -d' ' -f1 < /proc/loadavg)
|
# tmux set -g @loadavg "$(cut -d' ' -f1 < /proc/loadavg)"
|
||||||
# ;;
|
# ;;
|
||||||
# *OpenBSD*)
|
# *OpenBSD*)
|
||||||
# tmux set -g @loadavg $(sysctl -q -n vm.loadavg | cut -d' ' -f1)
|
# tmux set -g @loadavg "$(sysctl -q -n vm.loadavg | cut -d' ' -f1)"
|
||||||
# ;;
|
# ;;
|
||||||
# esac
|
# esac
|
||||||
# }
|
# }
|
||||||
|
|
Loading…
Reference in a new issue