mirror of
1
0
Fork 0

fixed shellcheck warnings

This commit is contained in:
Gregory Pakosz 2016-11-08 21:15:14 +01:00
parent 8390d37ed8
commit 71a2b76681
1 changed files with 3 additions and 3 deletions

View File

@ -527,13 +527,13 @@ run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration'
# _loadavg() {
# case $(uname -s) in
# *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*)
# tmux set -g @loadavg $(cut -d' ' -f1 < /proc/loadavg)
# tmux set -g @loadavg "$(cut -d' ' -f1 < /proc/loadavg)"
# ;;
# *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
# }