Files
dotfiles/tmux/powerline/segments/thyme.sh
2019-01-12 18:22:02 +01:00

10 lines
175 B
Bash
Executable File

# Print out Memory and CPU using https://github.com/creaktive/rainbarf
run_segment() {
stats=$(cat ~/.thyme-tmux)
if [ -n "$stats" ]; then
echo "$stats";
fi
return 0
}