{"id":23564235,"url":"https://github.com/nstechbytes/itempath","last_synced_at":"2025-09-07T00:33:06.526Z","repository":{"id":269550737,"uuid":"907764834","full_name":"NSTechBytes/ItemPath","owner":"NSTechBytes","description":"The ItemPath Plugin is a versatile Rainmeter plugin that allows users to select files or folders through interactive dialogs and dynamically write the results to a specified .ini file. This plugin is useful for creating dynamic and customizable Rainmeter skins.","archived":false,"fork":false,"pushed_at":"2024-12-24T13:42:56.000Z","size":108,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-16T04:34:36.952Z","etag":null,"topics":["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-12-24T10:32:13.000Z","updated_at":"2025-04-23T11:44:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"f54fe1e9-3c24-487b-9be5-0e127c1a8f9f","html_url":"https://github.com/NSTechBytes/ItemPath","commit_stats":null,"previous_names":["nstechbytes/itempath"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/NSTechBytes/ItemPath","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FItemPath","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FItemPath/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FItemPath/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FItemPath/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NSTechBytes","download_url":"https://codeload.github.com/NSTechBytes/ItemPath/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSTechBytes%2FItemPath/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273983015,"owners_count":25202092,"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-09-06T02:00:13.247Z","response_time":2576,"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":["rainmeter","rainmeter-plugin","rainmeter-skin","skin"],"created_at":"2024-12-26T17:13:30.980Z","updated_at":"2025-09-07T00:33:06.517Z","avatar_url":"https://github.com/NSTechBytes.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ItemPath Plugin for Rainmeter\n\nThe **ItemPath Plugin** is a versatile Rainmeter plugin that allows users to select files or folders through interactive dialogs and dynamically write the results to a specified `.ini` file. This plugin is useful for creating dynamic and customizable Rainmeter skins.\n\n---\n\n## Features\n\n- **ChooseFile**: Select a file with a specific extension filter (e.g., `.txt`, `.png`) and copy it to a specified location.\n- **ChooseFolder**: Select a folder and write its name and path to a `.ini` file.\n- Write selected file or folder information (name and path) to customizable variables in a `.ini` file.\n- Support for dynamic folder creation and file copying.\n\n---\n\n## Commands\n\n### Choose a File\n```ini\n[!CommandMeasure MeasurePath \"MeasureType=ChooseFile|FileType=.txt|VarName=FileName|VarPath=FilePath|IniPath=#@#Vars.nek|CopyPathVar=CopyPath|CopyPath=#@#CopyFolder\"]\n```\n\n- **MeasureType**: `ChooseFile` specifies the action to select a file.\n- **FileType**: Specify file extensions (e.g., `.txt,.jpg,.png`).\n- **VarName**: Variable name to store the file name.\n- **VarPath**: Variable name to store the file path.\n- **IniPath**: Path to the `.ini` file where variables will be written.\n- **CopyPathVar**: Variable name to store the path of the copied file (optional).\n- **CopyPath**: Folder where the file will be copied (optional).\n\n---\n\n### Choose a Folder\n```ini\n[!CommandMeasure MeasurePath \"MeasureType=ChooseFolder|VarName=FolderName|VarPath=FolderPath|IniPath=#@#Vars.nek\"]\n```\n\n- **MeasureType**: `ChooseFolder` specifies the action to select a folder.\n- **VarName**: Variable name to store the folder name.\n- **VarPath**: Variable name to store the folder path.\n- **IniPath**: Path to the `.ini` file where variables will be written.\n\n---\n\n## Example Rainmeter Skin\n\n```ini\n[Rainmeter]\nUpdate=1000\n\n[MeasurePath]\nMeasure=Plugin\nPlugin=ItemPath\nOnCompleteAction=[!Log \"[MeasurePath]\"]\nDynamicVariables=1\n\n[Button]\nMeter=String\nText=Choose a File \nW=400\nH=40\nSolidColor=47,47,47\nFontSize=18\nAntiAlias=1\nDynamicVariables=1\nLeftMouseUpAction=[!CommandMeasure MeasurePath \"MeasureType=ChooseFile|FileType=.txt,.png|VarName=FileName|VarPath=FilePath|IniPath=#@#Vars.nek|CopyPathVar=CopyFilePath|CopyPath=#@#CopyFolder\"]\n\n[Button1]\nMeter=String\nText=Choose a Folder\nW=400\nH=40\nY=5R\nFontSize=18\nSolidColor=47,47,47\nAntiAlias=1\nDynamicVariables=1\nLeftMouseUpAction=[!CommandMeasure MeasurePath \"MeasureType=ChooseFolder|VarName=FolderName|VarPath=FolderPath|IniPath=#@#Vars.nek\"]\n\n[Result]\nMeter=String\nText=Result: [MeasurePath]\nW=400\nH=40\nY=5R\nFontSize=18\nSolidColor=47,47,47\nAntiAlias=1\nDynamicVariables=1\n\n```\n\n---\n\n## Requirements\n\n- **Rainmeter**: Latest version.\n- **Platform**: Windows.\n\n---\n\n## Installation\n\n1. Download the compiled `ItemPath.dll` from the [Releases](https://github.com/NSTechBytes/ItemPath/releases) page.\n2. Place the `ItemPath.dll` in your Rainmeter `Plugins` folder.\n3. Create or update your Rainmeter skin to include the plugin commands.\n\n---\n\n## License\n\nThis project is licensed under the Apache License. See the `LICENSE` file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnstechbytes%2Fitempath","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnstechbytes%2Fitempath","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnstechbytes%2Fitempath/lists"}