{"id":17913535,"url":"https://github.com/pysimplegui/psggadgets","last_synced_at":"2025-09-19T00:11:15.478Z","repository":{"id":223028613,"uuid":"759143406","full_name":"PySimpleGUI/psggadgets","owner":"PySimpleGUI","description":"Desktop Gadgets using PySimpleGUI","archived":false,"fork":false,"pushed_at":"2024-02-17T19:16:18.000Z","size":453,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-19T00:17:53.951Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PySimpleGUI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-17T19:06:34.000Z","updated_at":"2024-11-07T23:28:31.000Z","dependencies_parsed_at":"2024-02-17T19:42:34.505Z","dependency_job_id":null,"html_url":"https://github.com/PySimpleGUI/psggadgets","commit_stats":null,"previous_names":["pysimplegui/psggadgets"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PySimpleGUI%2Fpsggadgets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PySimpleGUI%2Fpsggadgets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PySimpleGUI%2Fpsggadgets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PySimpleGUI%2Fpsggadgets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PySimpleGUI","download_url":"https://codeload.github.com/PySimpleGUI/psggadgets/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245186405,"owners_count":20574550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-28T19:52:27.334Z","updated_at":"2025-09-19T00:11:10.426Z","avatar_url":"https://github.com/PySimpleGUI.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cp align=\"center\"\u003e\u003cimg width=\"238\" height=\"135\" src=\"https://pysimplegui.net/images/logos/psglogofull.svg\"\u003e\u003cp\u003e\n\n  \u003ch2 align=\"center\"\u003epsggadgets\u003c/h2\u003e\n  \u003ch2 align=\"center\"\u003eA PySimpleGUI Application\u003c/h2\u003e\n\u003c/p\u003e\n\nRainmeter-like Widgets for your desktop using the easy to use\nPySimpleGUI package\n\n\n\n\n\n\n\n\n\n\n\n\n\n## Features\n\n* Run PySimpleGUI programs \"in the background\" by removing the titlebar\n* No icon is shown on the taskbar\n* Easily keep tabs on system resources at a glance\n* Dozens of meters, including psutils, weather, and more\n\n\n## Installation\n\n### Using PIP with PyPI\n\nThe latest official release of PySimpleGUI products can be found on PyPI.  To pip install the demo applications from PyPI, use this command\n\n#### If you use the command `python` on your computer to invoke Python (Windows):\n\n`pip install --upgrade psggadgets`\n\n#### If you use the command `python3` on your computer to invoke Python (Linux, Mac):\n\n`pip3 install --upgrade psggadgets`\n\n### Using PIP with GitHub\n\nYou can also pip install the PySimpleGUI Applications that are in the PySimpleGUI GitHub account.  The GitHub versions have bug fixes and new programs/features that have not yet been released to PyPI. To directly pip install from that repo:\n\n#### If you use the command `python` on your computer to invoke Python (Windows):\n\n```bash\npython -m pip install --upgrade https://github.com/PySimpleGUI/psggadgets/zipball/main\n```\n\n#### If you use the command `python3` on your computer to invoke Python (Linux, Mac):\n\n```bash\npython3 -m pip install --upgrade https://github.com/PySimpleGUI/psggadgets/zipball/main\n```\n\n\n## Usage\n\nOnce installed, launch psggadgets by typing the following in your command line:\n\n`psggadgets`\n\n## System Status Dashboard\n\nDisplays some stats found via the psutil package (required)\n\n![System Status Dashboard](https://user-images.githubusercontent.com/46163555/83331138-38b37080-a262-11ea-83a6-3864f7b8291e.gif)\n\nThis is one of the older programs.  Hopefully the coding conventions are up to date.\n\nIt uses a class to define the individual graphs which is likely a great way to have done it.  It's worth a look to see if it gives you some ideas.  Only recently re-discovered.\n\n---------------------\n\n\n## Weather - Current Weather Conditions\n\nYou will need to obtain an API key (APPID) from https://home.openweathermap.org/ in order to run this Widget.\n\nChange the colors to any of the PySimpleGUI Themes.\n\nYour key and location are saved in a config file (.CFG).  Any time you change the key or the location it will be saved in your config file.\n\n![SNAG-0649](https://user-images.githubusercontent.com/46163555/76476971-3ddaef00-63da-11ea-8e7e-3aafb1485185.jpg)\n\n\n-------------------------\n\n## CPU Core Usage\n\nThis one uses psutil to graph the CPU time used by each of your CPU's cores.\n\n![PSG CPU Cores Scrolling](https://user-images.githubusercontent.com/46163555/72114378-52830400-3311-11ea-8584-32bde5c265db.gif)\n\n--------------------------\n\n## Top CPU Usage Processes\n\nAnother psutil based Widget.\n\nAdjust how often you want the widget to refresh using the spinner.  \n\n![image](https://user-images.githubusercontent.com/46163555/84802089-0c238680-afce-11ea-844b-1038f0b722e2.png)\n\n\n--------------------------------\n\n\n## Disk Drive Usage\n\nAnother one based on psutil.  The Windows version works well, however the partition stats returned on Linux don't have values populated to determine the stats.  Maybe it works differently on Linux?  They come out to all 0's on Linux (sorry Linux users)\n\nChanging the theme will instantly give you a different text and background color, but it is not what is used to determine the bar colors.  Those are created from a simple list of colors defined at the top.  It's the same color combination used in the CPU core usage, so those 2 widgets match.  Feel free to replace with your own color scheme.\n\nStandard black color theme\n\n\n![image](https://user-images.githubusercontent.com/46163555/84708140-efd00d00-af2d-11ea-890d-cc1c40fbca46.png)\n\nA dark green\n\n![SNAG-0831](https://user-images.githubusercontent.com/46163555/84706443-f14c0600-af2a-11ea-98a5-086aad83286f.jpg)\n\nA light green\n\n![SNAG-0830](https://user-images.githubusercontent.com/46163555/84706444-f1e49c80-af2a-11ea-9d1e-145471853700.jpg)\n\nOne of the grays\n\n![SNAG-0829](https://user-images.githubusercontent.com/46163555/84706445-f1e49c80-af2a-11ea-8b9e-f76256180941.jpg)\n\nThe default alpha value is .7 which is why these images' colors are muted.  This is what no transparency (alpha 1.0) with a black theme looks like:\n\n![image](https://user-images.githubusercontent.com/46163555/84708226-1c842480-af2e-11ea-80f8-c58ffec667b3.png)\n\n\nTo exit click the \"X\" at the bottom.  Kept the interface super minimal by not using buttons, but instead simple clickable Text.\n\n\n------------------------------\n\n## RAM Used\n\nAnother psutil based widget.\n\nIt's a simple square that is shaded to represent the amount of RAM being used.  The percent used and the number of bytes used is then shown in text on top of the shaded bar.\n\nClicking the bottom left corner will allow you to exit.  There's a text X there, but it's the lower 20x20 pixel area that's actually being watched.\n\nThe color scheme is based on the chosen theme's button color.  The background color for the window is the theme's background color.  The filled portion is the theme's button background color and the text is the theme's button text color.\n\n![SNAG-0835](https://user-images.githubusercontent.com/46163555/84791471-a41a7380-afc0-11ea-9cf9-2ad54862b030.jpg)\n![SNAG-0834](https://user-images.githubusercontent.com/46163555/84791474-a4b30a00-afc0-11ea-8496-895396d3971c.jpg)\n\n## License \u0026 Copyright\n\nCopyright 2023-2024 PySimpleSoft, Inc. and/or its licensors.\n\nThis is a free-to-use \"Utility\" and is licensed under the\nPySimpleGUI License Agreement, a copy of which is included in the\nlicense.txt file and also available at https://pysimplegui.com/eula.\n\nPlease see Section 1.2 of the license regarding the use of this Utility,\nand see https://pysimplegui.com/faq for any questions.\n\n\n## Contributing\n\nWe are happy to receive issues describing bug reports and feature\nrequests! If your bug report relates to a security vulnerability,\nplease do not file a public issue, and please instead reach out to us\nat issues@PySimpleGUI.com.\n\nWe do not accept (and do not wish to receive) contributions of\nuser-created or third-party code, including patches, pull requests, or\ncode snippets incorporated into submitted issues. Please do not send\nus any such code! Bug reports and feature requests should not include\nany source code.\n\nIf you nonetheless submit any user-created or third-party code to us,\n(1) you assign to us all rights and title in or relating to the code;\nand (2) to the extent any such assignment is not fully effective, you\nhereby grant to us a royalty-free, perpetual, irrevocable, worldwide,\nunlimited, sublicensable, transferrable license under all intellectual\nproperty rights embodied therein or relating thereto, to exploit the\ncode in any manner we choose, including to incorporate the code into\nPySimpleGUI and to redistribute it under any terms at our discretion.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpysimplegui%2Fpsggadgets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpysimplegui%2Fpsggadgets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpysimplegui%2Fpsggadgets/lists"}