{"id":44537952,"url":"https://github.com/sayandipdutta/themechanger","last_synced_at":"2026-02-13T18:52:31.783Z","repository":{"id":129425185,"uuid":"443084874","full_name":"sayandipdutta/themechanger","owner":"sayandipdutta","description":"ThemeChanger is a command line utility, designed to work primarily with Auto Dark Mode. It changes themes for programs that support dark mode, but do not obey dynamic/adaptive theming on Windows.","archived":false,"fork":false,"pushed_at":"2025-07-08T20:47:22.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T05:40:10.846Z","etag":null,"topics":["adaptive-theme","auto-dark-mode","dynamic-themes"],"latest_commit_sha":null,"homepage":"","language":"Go","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/sayandipdutta.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":"2021-12-30T13:35:34.000Z","updated_at":"2025-07-08T20:47:25.000Z","dependencies_parsed_at":"2023-04-30T12:16:07.865Z","dependency_job_id":null,"html_url":"https://github.com/sayandipdutta/themechanger","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sayandipdutta/themechanger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sayandipdutta%2Fthemechanger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sayandipdutta%2Fthemechanger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sayandipdutta%2Fthemechanger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sayandipdutta%2Fthemechanger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sayandipdutta","download_url":"https://codeload.github.com/sayandipdutta/themechanger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sayandipdutta%2Fthemechanger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29414285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["adaptive-theme","auto-dark-mode","dynamic-themes"],"created_at":"2026-02-13T18:52:29.896Z","updated_at":"2026-02-13T18:52:31.770Z","avatar_url":"https://github.com/sayandipdutta.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Program to change themes for certain programs that don't support Dynamic Themeing in Windows\n\n## Requirements:\n1. Windows 10 or higher\n2. Auto Dark Mode \u003e= 10.0.0\n3. Golang \u003e= 1.23.5 (If you plan to build from source)\n\n## Installation\n```sh\ngo install github.com/sayandipdutta/themechanger\n```\n\nIf you plan to build from source, you will need to install Go from [here](https://golang.org/doc/install).\nAfter you are done installing. Get the repo and run the following command:\n```\ngit clone https://github.com/sayandipdutta/themechanger.git\ncd themechanger\ngo mod tidy\ngo build\n```\n`themechanger.exe` file will be created in the `pwd`.\n\nYou can then add it to your `%PATH` (`$Env:PATH` from `powershell`).\n\n## Usage\n1. Open the Auto Dark Mode scripts file (see [Installation](#installation))\n2. Add the following line to the end of the file:\n\n```\n  - Name: ProgramThemeSwitcher\n    Command: themechanger.exe  # if added to PATH, else the full path to the exe\n    ArgsLight: [-light]\n    ArgsDark: []\n    AllowedSources: [Any]\n```\nThe `scripts.yml` file should look like this:\n```\nEnabled: true\nComponent:\n  TimeoutMillis: 10000\n  Scripts:\n  - Name: ProgramThemeSwitcher\n    Command: themechanger.exe  # if added to PATH, else the full path to the exe\n    ArgsLight: [-light]\n    ArgsDark: []\n    AllowedSources: [Any]\n```\nUsage of `themeChange.exe` is as follows:\n```\nUsage of themeChange.exe:\n\nFlags:\n  -light light\n        If given, light theme will be set, otherwise `dark`.\n\nExample:\n.\\themeChange.exe\n.\\themeChange.exe -light\n```\n\n## Configuration:\n`themechanger` looks for the config file in `$Env:THEMECHANGER_CONFIG`.\n\nSo populate a `json` file with the following structure:\n```json5\n{\n  \"YourAppName\": {\n    \"light\": \"X:full\\\\path\\\\to\\\\light\\\\themeconfig\\\\for\\\\YourAppName\",\n    \"dark\": \"X:full\\\\path\\\\to\\\\dark\\\\themeconfig\\\\for\\\\YourAppName\",\n    \"configpath\": \"X:full\\\\path\\\\to\\\\YourApp's\\\\Default\\\\ConfigPath\"\n  },\n  // ... other apps\n}\n```\n\nAnd set the path of the file as `$Env:THEMECHANGER_CONFIG`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsayandipdutta%2Fthemechanger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsayandipdutta%2Fthemechanger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsayandipdutta%2Fthemechanger/lists"}