{"id":26703039,"url":"https://github.com/intel00000/nvidia_fe_lighting","last_synced_at":"2026-06-08T11:32:10.112Z","repository":{"id":284492750,"uuid":"955123528","full_name":"intel00000/nvidia_FE_lighting","owner":"intel00000","description":"Control FE card lighting via NVAPI","archived":false,"fork":false,"pushed_at":"2025-11-26T19:02:18.000Z","size":12639,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-28T10:41:33.754Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/intel00000.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-26T06:26:20.000Z","updated_at":"2025-11-26T19:00:35.000Z","dependencies_parsed_at":"2025-03-26T07:36:11.956Z","dependency_job_id":null,"html_url":"https://github.com/intel00000/nvidia_FE_lighting","commit_stats":null,"previous_names":["intel00000/nvidia_fe_lighting"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/intel00000/nvidia_FE_lighting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intel00000%2Fnvidia_FE_lighting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intel00000%2Fnvidia_FE_lighting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intel00000%2Fnvidia_FE_lighting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intel00000%2Fnvidia_FE_lighting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/intel00000","download_url":"https://codeload.github.com/intel00000/nvidia_FE_lighting/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intel00000%2Fnvidia_FE_lighting/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34061122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"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":[],"created_at":"2025-03-27T03:18:39.896Z","updated_at":"2026-06-08T11:32:10.107Z","avatar_url":"https://github.com/intel00000.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NVIDIA FE Lighting Control\n\nControlling RGB/RGBW illumination zones on NVIDIA graphics cards, primarily for Founders Edition models. Only tested on RTX50 series, but should work on 30/40 series as well.\n\n![Build Status](https://github.com/intel00000/nvidia_FE_lighting/workflows/Build%20and%20Release/badge.svg)\n\n## Features\n\n- **Full Zone Control**: Adjust RGB/RGBW colors and brightness\n- **Profile Management**: Save and load up to 5 profiles\n- **Startup Integration**: Automatically apply settings on Windows startup\n\n## Requirements\n\n- Windows 10/11 (64-bit)\n- .NET 8.0.x Runtime ([Download here](https://dotnet.microsoft.com/download/dotnet/8.0))\n- NVIDIA drivers installed\n\n## Installation\n\n### From Releases\n\n1. Download the latest release ZIP from the [Releases](https://github.com/intel00000/nvidia_FE_lighting/releases) page\n2. Extract the single `nvidia_FE_lighting.exe` file\n3. Run it.\n\n### Building from Source\n\n**Prerequisites:**\n\n- Visual Studio 2022\n- .NET 8.0 SDK\n\n**Build Steps for Single-File Executable:**\n\n```bash\ngit clone --recurse-submodules https://github.com/intel00000/nvidia_FE_lighting.git\ncd nvidia_FE_lighting\n\n# If you already cloned without --recurse-submodules, run:\n# git submodule update --init --recursive\n\n# Build the C++ wrapper\nmsbuild nvidia_FE_lighting.sln /p:Configuration=Release /p:Platform=x64 /t:NvApiWrapper\n\n# Publish as single-file executable\ndotnet publish nvidia_FE_lighting\\nvidia_FE_lighting.csproj -c Release -r win-x64 --self-contained false -p:PublishSingleFile=true -o publish\n```\n\nOutput will be a single `nvidia_FE_lighting.exe` in the `publish\\` folder.\n\n## Usage\n\n1. **Select GPU**: Choose your GPU from the dropdown\n2. **Detect Zones**: Click \"Detect Zones\" to find all available illumination zones\n3. **Customize Colors**: Use the color pickers and sliders to adjust each zone\n4. **Apply Settings**: Click \"Apply All\" to apply the changes\n5. **Save Profile**: Save your favorite configurations to profile slots\n6. **Enable Startup**: Check \"Apply current settings on startup\" to automatically apply settings on boot\n\n## Startup Feature\n\nThe startup feature ensures your lighting settings persist across reboots:\n\n- **10-second delay** after boot to allow driver initialization\n- **GPU verification** prevents applying settings to wrong GPU after hardware changes\n- **Lightweight startup** runs without UI when triggered at startup\n- **Logging** in `%AppData%\\NvidiaFELighting\\startup_log.txt`\n\nThe application will copy itself to `%AppData%\\NvidiaFELighting\\FELighting.exe` for reliable startup execution.\n\n## Project Structure\n\n```\nnvidia_FE_lighting/\n├── nvidia_FE_lighting/         # Main WPF application (C#)\n│   ├── App.xaml/App.xaml.cs    # Application entry point and startup logic\n│   ├── MainWindow.xaml/.cs     # Main UI and control logic\n│   └── NvApiWrapper.cs         # P/Invoke declarations\n├── NvApiWrapper/               # C++ wrapper for NVIDIA API\n    ├── NvApiDll.cpp            # NVAPI implementation\n    └── NvApiDll.h              # Header file\n```\n\n## Acknowledgments\n\n- The NVAPI library\n- Extended WPF Toolkit for the ColorPicker control\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintel00000%2Fnvidia_fe_lighting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintel00000%2Fnvidia_fe_lighting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintel00000%2Fnvidia_fe_lighting/lists"}