68 lines
2.8 KiB
Python
68 lines
2.8 KiB
Python
import PySimpleGUI as sg
|
|
import psutil
|
|
import sys
|
|
|
|
"""
|
|
Another simple Desktop Widget using PySimpleGUI
|
|
This time a RAM indicator. The Widget is square. The bottom section will be shaded to
|
|
represent the total amount of RAM currently in use.
|
|
The % and number of bytes in use is shown on top in text.
|
|
Uses the theme's button color for colors.
|
|
|
|
Copyright 2020 PySimpleGUI.org
|
|
"""
|
|
|
|
ALPHA = 0.5
|
|
THEME = 'Dark Green 5'
|
|
GSIZE = (160, 160)
|
|
UPDATE_FREQUENCY_MILLISECONDS = 10 * 1000
|
|
|
|
|
|
def human_size(bytes, units=(' bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB')):
|
|
""" Returns a human readable string reprentation of bytes"""
|
|
return str(bytes) + ' ' + units[0] if bytes < 1024 else human_size(bytes >> 10, units[1:])
|
|
|
|
|
|
sg.theme(THEME)
|
|
|
|
def main(location):
|
|
|
|
graph = sg.Graph(GSIZE, (0, 0), GSIZE, key='-GRAPH-', enable_events=True)
|
|
layout = [[graph]]
|
|
|
|
window = sg.Window('RAM Usage Widget Square', layout, location=location, no_titlebar=True, grab_anywhere=True, margins=(0, 0), element_padding=(0, 0), alpha_channel=ALPHA, finalize=True, right_click_menu=sg.MENU_RIGHT_CLICK_EDITME_VER_EXIT, enable_close_attempted_event=True, keep_on_top=True)
|
|
|
|
|
|
while True: # Event Loop
|
|
# ----------- update the graphics and text in the window ------------
|
|
ram = psutil.virtual_memory()
|
|
rect_height = int(GSIZE[1] * float(ram.percent) / 100)
|
|
rect_id = graph.draw_rectangle((0, rect_height), (GSIZE[0], 0), fill_color=sg.theme_button_color()[1], line_width=0)
|
|
text_id1 = graph.draw_text(f'{int(ram.percent)}%', (GSIZE[0] // 2, GSIZE[1] // 2), font='Any 40', text_location=sg.TEXT_LOCATION_CENTER,
|
|
color=sg.theme_button_color()[0])
|
|
text_id2 = graph.draw_text(f'{human_size(ram.used)} used', (GSIZE[0] // 2, GSIZE[1] // 4), font='Any 20', text_location=sg.TEXT_LOCATION_CENTER, color=sg.theme_button_color()[0])
|
|
|
|
event, values = window.read(timeout=UPDATE_FREQUENCY_MILLISECONDS)
|
|
if event in (sg.WIN_CLOSED, 'Exit', sg.WIN_CLOSE_ATTEMPTED_EVENT):
|
|
if event != sg.WIN_CLOSED:
|
|
sg.user_settings_set_entry('-location-', window.current_location()) # The line of code to save the position before exiting
|
|
break
|
|
if event == 'Edit Me':
|
|
sg.execute_editor(__file__)
|
|
elif event == 'Version':
|
|
sg.popup_scrolled(__file__, sg.get_versions(), location=window.current_location(), keep_on_top=True, non_blocking=True)
|
|
|
|
graph.delete_figure(rect_id)
|
|
graph.delete_figure(text_id1)
|
|
graph.delete_figure(text_id2)
|
|
window.close()
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) > 1:
|
|
location = sys.argv[1].split(',')
|
|
location = (int(location[0]), int(location[1]))
|
|
else:
|
|
location = sg.user_settings_get_entry('-location-', (None, None))
|
|
main(location)
|