-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solution #53: CPU temperature goes to off state #54
base: master
Are you sure you want to change the base?
Conversation
This patch has fixed #16 / #52 / #53 in my case. diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml
index 67e3f4c..6081d52 100644
--- a/package/contents/ui/main.qml
+++ b/package/contents/ui/main.qml
@@ -277,13 +277,8 @@ Item {
dbgprint('adding source to systemmonitorDS: ' + source)
- if (getSystemmonitorAvailableSources().indexOf(source) > -1) {
dbgprint('adding to connected')
addToSourcesOfDatasource(systemmonitorDS, source)
- } else {
- dbgprint('adding to sta')
- systemmonitorSourcesToAdd.push(source)
- }
} It works fine as well |
Yes, caues comment this line,
resulted in this variable systemmonitorAvailableSources never been used, so there is no error.
And I think the code which removed in your patch and variable
So, I think it will also be fine you remove all things related to variable |
Works fine for me on VoidLinux! Thank you for your effort. I hope this will be merged soon enough :) |
This still seems a bit wonky for me... It took a few reloads to get lm sensors to show up |
Maybe you should use |
It works. Please commit |
This pull request to solve #52 .
And also solve #16 and #53 these two are same problem, which I think the reason is #52 .