├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── decky_plugin.pyi ├── defaults └── shaders │ ├── DefringSamsungOLEDeck.fx │ ├── RD_MattiasCRT.fx │ ├── RD_VHS_RA.fx │ ├── ReShadeUI.fxh │ ├── SS_ScreenOff.fx │ └── set_shader.sh ├── main.py ├── package.json ├── plugin.json ├── pnpm-lock.yaml ├── reshadeck.png ├── rollup.config.js ├── shaders ├── src ├── index.tsx └── types.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/README.md -------------------------------------------------------------------------------- /decky_plugin.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/decky_plugin.pyi -------------------------------------------------------------------------------- /defaults/shaders/DefringSamsungOLEDeck.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/defaults/shaders/DefringSamsungOLEDeck.fx -------------------------------------------------------------------------------- /defaults/shaders/RD_MattiasCRT.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/defaults/shaders/RD_MattiasCRT.fx -------------------------------------------------------------------------------- /defaults/shaders/RD_VHS_RA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/defaults/shaders/RD_VHS_RA.fx -------------------------------------------------------------------------------- /defaults/shaders/ReShadeUI.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/defaults/shaders/ReShadeUI.fxh -------------------------------------------------------------------------------- /defaults/shaders/SS_ScreenOff.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/defaults/shaders/SS_ScreenOff.fx -------------------------------------------------------------------------------- /defaults/shaders/set_shader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/defaults/shaders/set_shader.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/main.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/plugin.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /reshadeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/reshadeck.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/rollup.config.js -------------------------------------------------------------------------------- /shaders: -------------------------------------------------------------------------------- 1 | ./defaults/shaders -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/Reshadeck/HEAD/tsconfig.json --------------------------------------------------------------------------------