{"id":23040803,"url":"https://github.com/nstechbytes/activeskin","last_synced_at":"2025-11-09T14:05:01.394Z","repository":{"id":266688570,"uuid":"888281026","full_name":"NSTechBytes/ActiveSkin","owner":"NSTechBytes","description":"ActiveSkin is a Rainmeter plugin that checks the Active status of a specified skin section in the Rainmeter.ini file. It returns whether the skin section is active (1) or inactive (0), allowing integration of this status into your Rainmeter skins.","archived":false,"fork":false,"pushed_at":"2025-03-24T09:19:50.000Z","size":45,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-27T08:46:18.841Z","etag":null,"topics":["activeskin","c-sharp","dll","plugin","rainmeter","rainmeter-plugin","rainmeter-skin","skin"],"latest_commit_sha":null,"homepage":"https://nstechbytes.github.io/Nasir-Shahbaz/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NSTechBytes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null}},"created_at":"2024-11-14T05:56:21.000Z","updated_at":"2025-04-23T11:43:41.000Z","dependencies_parsed_at":"2025-04-03T00:35:21.080Z","dependency_job_id":null,"html_url":"https://github.com/NSTechBytes/ActiveSkin","commit_stats":null,"previous_names":["nstechbytes/activeskin"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/NSTechBytes/ActiveSkin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FActiveSkin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FActiveSkin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FActiveSkin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FActiveSkin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NSTechBytes","download_url":"https://codeload.github.com/NSTechBytes/ActiveSkin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FActiveSkin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283517794,"owners_count":26849048,"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","status":"online","status_checked_at":"2025-11-09T02:00:05.828Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["activeskin","c-sharp","dll","plugin","rainmeter","rainmeter-plugin","rainmeter-skin","skin"],"created_at":"2024-12-15T19:19:26.066Z","updated_at":"2025-11-09T14:05:01.378Z","avatar_url":"https://github.com/NSTechBytes.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# ActiveSkin - Rainmeter Plugin\n\n**ActiveSkin** is a **Rainmeter** plugin that checks the **Active** status of a specified skin section in the `Rainmeter.ini` file. It returns whether the skin section is **active** (`1`) or **inactive** (`0`), allowing integration of this status into your Rainmeter skins.\n\n## Features\n\n- **Checks the Active status** of a skin section from the `Rainmeter.ini` file.\n- Returns `1` if the skin section is **active**, and `0` if it is **inactive**.\n- Easy integration into Rainmeter skins using a simple measure.\n\n## Installation\n\n1. **Download the latest release** of **ActiveSkin** from the [Releases page](https://github.com/NSTechBytes/ActiveSkin/releases).\n2. **Install the plugin** by copying `ActiveSkin.dll` into the Rainmeter `Plugins` directory:\n   - The default path is:  \n     `C:\\Users\\\u003cYourUsername\u003e\\Documents\\Rainmeter\\Plugins\\`\n\n3. After installation, you can use the plugin in your Rainmeter skins.\n\n## Usage\n\n### 1. Create a Measure in your Rainmeter skin\n\nIn your `.ini` skin file, define a measure that uses the **ActiveSkin** plugin. Specify the section you want to check in the `SkinSection` parameter.\n\n```ini\n[Rainmeter]\nUpdate=1000\nBackgroundMode=2\nSolidColor=ffffff\n\n[mSkinActiveStatus]\nMeasure=Plugin\nPlugin=ActiveSkin\nSkinSection=illustro\\System\nIfCondition=(mSkinActiveStatus = 1)\nIfTrueAction=[!Log \"illustro\\System  is Active\" \"Debug\"]\nIfFalseAction=[!Log \"illustro\\System  is Inactive\" \"Debug\"]\nDynamicVariables=1\n\n\n[mSkinActiveStatus1]\nMeasure=Plugin\nPlugin=ActiveSkin\nSkinSection=illustro\\Clock\nIfCondition=(mSkinActiveStatus1 = 1)\nIfTrueAction=[!Log \"illustro\\Clock is Active\" \"Debug\"]\nIfFalseAction=[!Log \"illustro\\Clock is Inactive\" \"Debug\"]\nDynamicVariables=1\n\n\n[TextDisplay]\nMeter=STRING\nMeasureName=mSkinActiveStatus\nX=10\nY=10\nFontColor=000000\nText=\"illustro\\System Status: %1\" \nFontSize=12\nDynamicVariables=1\nAntialias=1\n\n[TextDisplay1]\nMeter=STRING\nMeasureName=mSkinActiveStatus1\nX=10\nY=30\nFontColor=000000\nText=\"illustro\\Clock Status: %1\" \nFontSize=12\nDynamicVariables=1\nAntialias=1\n\n\n[Measure1]\nMeter=STRING\nX=10\nY=50\nFontColor=000000\nText=Measure1 Value : [mSkinActiveStatus]\nFontSize=12\nDynamicVariables=1\nAntialias=1\n\n\n[Measure2]\nMeter=STRING\nX=10\nY=70\nFontColor=000000\nText=Measure2 Value : [mSkinActiveStatus1]\nFontSize=12\nDynamicVariables=1\nAntialias=1\n\n```\n\nIn this example:\n- **SkinSection=MySkinSection** is the section in your `Rainmeter.ini` file whose **Active** status you want to check.\n- `%1` will display `1` if the section is active, or `0` if it is inactive.\n\n\n## Parameters\n\n- **SkinSection**: The section name in the `Rainmeter.ini` file that you want to check. This parameter is required and should be specified in the `.ini` file for the skin to work correctly.\n\n## Troubleshooting\n\n- **Missing or Incorrect Section**: Ensure that the section name provided in the `SkinSection` parameter exactly matches the name in `Rainmeter.ini`.\n- **File Not Found**: The plugin expects the `Rainmeter.ini` file to be located in the `AppData` folder (`%AppData%\\Rainmeter\\Rainmeter.ini`). Ensure this file exists.\n\n## Contributing\n\nIf you'd like to contribute to this project, feel free to fork the repository and submit a pull request. Please follow the existing style and include tests where applicable.\n\n### Bug Reports \u0026 Feature Requests\n\nIf you encounter bugs or want to suggest features, please use the [Issues tab](https://github.com/NSTechBytes/ActiveSkin/issues).\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnstechbytes%2Factiveskin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnstechbytes%2Factiveskin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnstechbytes%2Factiveskin/lists"}