10 lines
175 B
Bash
Executable File
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
|
|
}
|