added the refresh rate by pulling from the .tmux.conf file and running
the get_tmux_option function and using that as the variable for the refresh rate on sleep
This commit is contained in:
parent
f5f8dedb9f
commit
e290571fee
4 changed files with 36 additions and 3 deletions
|
@ -1,5 +1,16 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
get_tmux_option() {
|
||||||
|
local option=$1
|
||||||
|
local default_value=$2
|
||||||
|
local option_value=$(tmux show-option -gqv "$option")
|
||||||
|
if [ -z $option_value ]; then
|
||||||
|
echo $default_value
|
||||||
|
else
|
||||||
|
echo $option_value
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
get_percent()
|
get_percent()
|
||||||
{
|
{
|
||||||
case $(uname -s) in
|
case $(uname -s) in
|
||||||
|
@ -21,6 +32,7 @@ get_percent()
|
||||||
|
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
|
RATE=$(get_tmux_option "@dracula-refresh-rate" 5)
|
||||||
cpu_percent=$(get_percent)
|
cpu_percent=$(get_percent)
|
||||||
echo "CPU $cpu_percent"
|
echo "CPU $cpu_percent"
|
||||||
sleep $RATE
|
sleep $RATE
|
||||||
|
|
|
@ -34,9 +34,6 @@ main()
|
||||||
show_time=$(get_tmux_option "@dracula-show-time" true)
|
show_time=$(get_tmux_option "@dracula-show-time" true)
|
||||||
show_refresh=$(get_tmux_option "@dracula-refresh-rate" 5)
|
show_refresh=$(get_tmux_option "@dracula-refresh-rate" 5)
|
||||||
|
|
||||||
# exporting the value for the other scripts to read
|
|
||||||
export RATE=$show_refresh
|
|
||||||
|
|
||||||
# Dracula Color Pallette
|
# Dracula Color Pallette
|
||||||
white='#f8f8f2'
|
white='#f8f8f2'
|
||||||
gray='#44475a'
|
gray='#44475a'
|
||||||
|
|
|
@ -1,5 +1,16 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
get_tmux_option() {
|
||||||
|
local option=$1
|
||||||
|
local default_value=$2
|
||||||
|
local option_value=$(tmux show-option -gqv "$option")
|
||||||
|
if [ -z $option_value ]; then
|
||||||
|
echo $default_value
|
||||||
|
else
|
||||||
|
echo $option_value
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
get_platform()
|
get_platform()
|
||||||
{
|
{
|
||||||
case $(uname -s) in
|
case $(uname -s) in
|
||||||
|
@ -27,6 +38,7 @@ get_gpu()
|
||||||
}
|
}
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
|
RATE=$(get_tmux_option "@dracula-refresh-rate" 5)
|
||||||
gpu_usage=$(get_gpu)
|
gpu_usage=$(get_gpu)
|
||||||
echo "GPU $gpu_usage"
|
echo "GPU $gpu_usage"
|
||||||
sleep $RATE
|
sleep $RATE
|
||||||
|
|
|
@ -1,5 +1,16 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
get_tmux_option() {
|
||||||
|
local option=$1
|
||||||
|
local default_value=$2
|
||||||
|
local option_value=$(tmux show-option -gqv "$option")
|
||||||
|
if [ -z $option_value ]; then
|
||||||
|
echo $default_value
|
||||||
|
else
|
||||||
|
echo $option_value
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
get_percent()
|
get_percent()
|
||||||
{
|
{
|
||||||
case $(uname -s) in
|
case $(uname -s) in
|
||||||
|
@ -37,6 +48,7 @@ get_percent()
|
||||||
|
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
|
RATE=$(get_tmux_option "@dracula-refresh-rate" 5)
|
||||||
ram_percent=$(get_percent)
|
ram_percent=$(get_percent)
|
||||||
echo "RAM $ram_percent"
|
echo "RAM $ram_percent"
|
||||||
sleep $RATE
|
sleep $RATE
|
||||||
|
|
Loading…
Reference in a new issue