-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from chauek/master
Added support for system temperature on Raspberry PI
- Loading branch information
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
# setting the locale, some users have issues with different locales, this forces the correct one | ||
export LC_ALL=en_US.UTF-8 | ||
|
||
get_temp() { | ||
echo "$(vcgencmd measure_temp | sed 's/temp=//')" | ||
} | ||
|
||
main() { | ||
# storing the refresh rate in the variable RATE, default is 5 | ||
RATE=$(get_tmux_option "@dracula-refresh-rate" 5) | ||
echo "$(get_temp)" | ||
sleep $RATE | ||
} | ||
|
||
# run main driver | ||
main |