-
Notifications
You must be signed in to change notification settings - Fork 163
A few tweaks to sys_info example #187
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
Conversation
Summary of ChangesHello @ThibaultDECO, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces several enhancements to the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces several nice improvements to the sys_info example. The information displayed for CPU, memory, and disk usage is now more informative and clearly formatted. The stats function has been significantly refactored to dynamically calculate line heights based on the font, making the layout more robust and adaptable. My review includes a suggestion to further refine the drawing logic in the stats function for better clarity and robustness.
| draw.text((2, line_height * 0), cpu_usage(), font=font2, fill="white") | ||
| if device.height >= (line_height * 2): | ||
| draw.text((2, line_height * 1), mem_usage(), font=font2, fill="white") | ||
|
|
||
| if device.height >= 64: | ||
| draw.text((0, 26), disk_usage('/'), font=font2, fill="white") | ||
| if device.height >= (line_height * 3): | ||
| draw.text((2, line_height * 2), disk_usage('/'), font=font2, fill="white") | ||
| try: | ||
| draw.text((0, 38), network('wlan0'), font=font2, fill="white") | ||
| if device.height >= (line_height * 4): | ||
| draw.text((2, line_height * 3), network('wlan0'), font=font2, fill="white") | ||
| except KeyError: | ||
| # no wifi enabled/available | ||
| pass |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The logic for drawing the text lines can be simplified and made more robust.
- The first line is drawn unconditionally, which might cause clipping on small displays. It should have a height check like the other lines.
- The
ifcondition for network info is nested inside the one for disk info. This can be flattened to make the logic for each line independent and clearer.
Here is a suggested refactoring that addresses these points:
| draw.text((2, line_height * 0), cpu_usage(), font=font2, fill="white") | |
| if device.height >= (line_height * 2): | |
| draw.text((2, line_height * 1), mem_usage(), font=font2, fill="white") | |
| if device.height >= 64: | |
| draw.text((0, 26), disk_usage('/'), font=font2, fill="white") | |
| if device.height >= (line_height * 3): | |
| draw.text((2, line_height * 2), disk_usage('/'), font=font2, fill="white") | |
| try: | |
| draw.text((0, 38), network('wlan0'), font=font2, fill="white") | |
| if device.height >= (line_height * 4): | |
| draw.text((2, line_height * 3), network('wlan0'), font=font2, fill="white") | |
| except KeyError: | |
| # no wifi enabled/available | |
| pass | |
| if device.height >= line_height: | |
| draw.text((2, line_height * 0), cpu_usage(), font=font2, fill="white") | |
| if device.height >= (line_height * 2): | |
| draw.text((2, line_height * 1), mem_usage(), font=font2, fill="white") | |
| if device.height >= (line_height * 3): | |
| draw.text((2, line_height * 2), disk_usage('/'), font=font2, fill="white") | |
| if device.height >= (line_height * 4): | |
| try: | |
| draw.text((2, line_height * 3), network('wlan0'), font=font2, fill="white") | |
| except KeyError: | |
| # no wifi enabled/available | |
| pass |
A few tweaks to sys_info example