{"id":20734029,"url":"https://github.com/microeinstein/json-menu","last_synced_at":"2025-03-11T10:42:36.105Z","repository":{"id":78124825,"uuid":"63782687","full_name":"Microeinstein/JSON-Menu","owner":"Microeinstein","description":"Customizable menu for the notification area on windows, using JSON and winforms. A sample menu is generated on the first run. This is an hobby project from 2016 and it's not mantained.","archived":false,"fork":false,"pushed_at":"2023-11-16T21:56:58.000Z","size":741,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"trunk","last_synced_at":"2025-01-18T00:48:58.221Z","etag":null,"topics":["csharp","customizable","json","json-menu","menu","netframework","nirsoft","notification-area","simple","windows"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Microeinstein.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","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":"2016-07-20T13:14:28.000Z","updated_at":"2023-11-16T21:13:39.000Z","dependencies_parsed_at":"2025-01-18T00:48:27.080Z","dependency_job_id":null,"html_url":"https://github.com/Microeinstein/JSON-Menu","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Microeinstein%2FJSON-Menu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Microeinstein%2FJSON-Menu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Microeinstein%2FJSON-Menu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Microeinstein%2FJSON-Menu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Microeinstein","download_url":"https://codeload.github.com/Microeinstein/JSON-Menu/tar.gz/refs/heads/trunk","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243019809,"owners_count":20222904,"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":["csharp","customizable","json","json-menu","menu","netframework","nirsoft","notification-area","simple","windows"],"created_at":"2024-11-17T05:28:21.015Z","updated_at":"2025-03-11T10:42:36.098Z","avatar_url":"https://github.com/Microeinstein.png","language":"C#","readme":"# JSON Menu\r\n\r\nCustomizable menu for the notification area on windows, using JSON and winforms. A sample menu is generated on the first run. This is an hobby project from 2016 and it's not mantained.\r\n\r\n## Gallery\r\n\r\n\u003cimg src=\"/.repo/left-click.png\" alt=\"Left click\" width=\"49%\"\u003e \u003cimg src=\"/.repo/right-click.png\" alt=\"Right click\" width=\"49%\"\u003e\u003cbr\u003e\r\n\u003cimg src=\"/.repo/icons-small.png\" alt=\"Icon picker - small\" width=\"49%\"\u003e \u003cimg src=\"/.repo/icons-large.png\" alt=\"Icon picker - large\" width=\"49%\"\u003e\r\n\r\n## Features\r\n\r\n- [x] Manual entries\r\n- [x] Automatic directory indexing\r\n- [x] [NirLauncher](http://launcher.nirsoft.net/) packages indexing\r\n- [x] GUI/Console recognition\r\n- [x] Detect current monitor size\r\n- [x] Icon picker\r\n- [x] Launch at startup\r\n- [x] Edit JSON configuration with default app\r\n\r\n### Mouse navigation\r\n\r\n- Left click — json menu\r\n    - Left click — open\r\n    - Right click — run as administrator\r\n    - Middle click — locate resolved path in explorer\r\n- Right click — internal menu\r\n\r\n## Download\r\n\r\nSee [releases](https://github.com/Microeinstein/JSON-Menu/releases).\r\n\r\n## How to build\r\n\r\n- Dependencies\r\n    - **.NET framework** 4.5, winforms\r\n    - **Newtonsoft.Json** 9.0.1 ([nuget](https://www.nuget.org/packages/Newtonsoft.Json/9.0.1)) — has vulnerability, must be updated\r\n\r\n- Other requirements\r\n    - Windows 7 or later _(?)_\r\n    - Visual Studio\r\n\r\nBeing a Visual Studio project, compilation steps will be determined automatically.\r\n\r\n## Configuration\r\n\r\n```javascript\r\n[                                 // list of entries\r\n  {\r\n    \"path\": \"prog.exe\",           // file to open\r\n    \"args\": \"/flag /?\",           // execution arguments\r\n    \"workDir\": \"D:\\\\\",            // working directory\r\n    \"text\": \"Label\",              // label override\r\n    \"icon\": \"res.dll,num\",        // icon override\r\n    \"items\": []                   // submenu entries\r\n  },\r\n  \"separator\",\r\n  {\r\n    \"path\": \"D:\\\\Games\",          // automatic directory indexing\r\n    \"mask\": [\"*.png\"],            // inclusive glob filtering masks\r\n    \"maxDepth\": 1,                // limit indexing depth\r\n    \"showHiddenFiles\": false,\r\n    \"showHiddenFolders\": false,\r\n    \"showOnlyFiles\": false,\r\n    \"showOnlyFolders\": true,\r\n    \"sortByName\": true            // (sort by type by default)\r\n  },\r\n  {\r\n    \"NirPack\": \".\\\\package.nlp\"   // NirLauncher package\r\n  }\r\n]\r\n```\r\n\r\n## License\r\n\r\n[GPLv3](COPYING) ([resources](/Resources) excluded)\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicroeinstein%2Fjson-menu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicroeinstein%2Fjson-menu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicroeinstein%2Fjson-menu/lists"}