├── .gitignore ├── CMakeLists.txt ├── CMakeModules ├── AddMingwRC.cmake ├── FindIUP.cmake ├── FindXCB.cmake ├── FindXLIB.cmake └── NSIS.template.in ├── FixDebi686.sh ├── FixDebx86_64.sh ├── LICENSE.txt ├── README.txt ├── configure ├── configure.cmd ├── data ├── AppIcons │ ├── redshift-icon.png │ ├── redshift-idle.png │ ├── redshift.png │ ├── sun.png │ └── sunback.png ├── GenIcons.sh ├── NSIS_Welcome.bmp ├── applications │ └── redshiftgui.desktop ├── aur_pack.sh └── icons │ └── hicolor │ ├── 128x128 │ └── apps │ │ └── redshiftgui.png │ ├── 16x16 │ └── apps │ │ └── redshiftgui.png │ ├── 192x192 │ └── apps │ │ └── redshiftgui.png │ ├── 22x22 │ └── apps │ │ └── redshiftgui.png │ ├── 24x24 │ └── apps │ │ └── redshiftgui.png │ ├── 256x256 │ └── apps │ │ └── redshiftgui.png │ ├── 32x32 │ └── apps │ │ └── redshiftgui.png │ ├── 36x36 │ └── apps │ │ └── redshiftgui.png │ ├── 48x48 │ └── apps │ │ └── redshiftgui.png │ ├── 64x64 │ └── apps │ │ └── redshiftgui.png │ ├── 72x72 │ └── apps │ │ └── redshiftgui.png │ ├── 96x96 │ └── apps │ │ └── redshiftgui.png │ └── scalable │ └── apps │ └── redshiftgui.svg ├── docs ├── DoxyCSS.css ├── DoxyHeader.html ├── DoxyLogo.png ├── Doxyfile.in └── Main.dox ├── msvc └── stdint.h ├── scripts ├── checkgam.m └── gammars.csv ├── splint.mts ├── splint.xh └── src ├── MakeTags.cmd ├── MakeTags.sh ├── backends ├── randr.c ├── randr.h ├── vidmode.c ├── vidmode.h ├── w32gdi.c └── w32gdi.h ├── common.h ├── gamma.c ├── gamma.h ├── gamma_vals.h ├── gui ├── gtkgui.c ├── gtkgui.h ├── iupgui.c ├── iupgui.h ├── iupgui_gamma.c ├── iupgui_gamma.h ├── iupgui_location.c ├── iupgui_location.h ├── iupgui_main.c ├── iupgui_main.h ├── iupgui_settings.c ├── iupgui_settings.h ├── win32gui.c ├── win32gui.h ├── win32gui_gamma.c └── win32gui_gamma.h ├── location.c ├── location.h ├── netutils.c ├── netutils.h ├── options.c ├── options.h ├── redshiftgui.c ├── resources ├── redshift-idle.c ├── redshift.c ├── sun.c └── sunback.c ├── solar.c ├── solar.h ├── systemtime.c ├── systemtime.h ├── thirdparty ├── argparser.c ├── argparser.h ├── logger.c ├── logger.h ├── stb_image.c └── stb_image.h └── win32 ├── Redshiftgui.rc ├── app.64.manifest.in ├── app.ico ├── app.manifest.in ├── app.rc ├── app.rc.in └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/AddMingwRC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/CMakeModules/AddMingwRC.cmake -------------------------------------------------------------------------------- /CMakeModules/FindIUP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/CMakeModules/FindIUP.cmake -------------------------------------------------------------------------------- /CMakeModules/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/CMakeModules/FindXCB.cmake -------------------------------------------------------------------------------- /CMakeModules/FindXLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/CMakeModules/FindXLIB.cmake -------------------------------------------------------------------------------- /CMakeModules/NSIS.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/CMakeModules/NSIS.template.in -------------------------------------------------------------------------------- /FixDebi686.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/FixDebi686.sh -------------------------------------------------------------------------------- /FixDebx86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/FixDebx86_64.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/README.txt -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/configure -------------------------------------------------------------------------------- /configure.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/configure.cmd -------------------------------------------------------------------------------- /data/AppIcons/redshift-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/AppIcons/redshift-icon.png -------------------------------------------------------------------------------- /data/AppIcons/redshift-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/AppIcons/redshift-idle.png -------------------------------------------------------------------------------- /data/AppIcons/redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/AppIcons/redshift.png -------------------------------------------------------------------------------- /data/AppIcons/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/AppIcons/sun.png -------------------------------------------------------------------------------- /data/AppIcons/sunback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/AppIcons/sunback.png -------------------------------------------------------------------------------- /data/GenIcons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/GenIcons.sh -------------------------------------------------------------------------------- /data/NSIS_Welcome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/NSIS_Welcome.bmp -------------------------------------------------------------------------------- /data/applications/redshiftgui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/applications/redshiftgui.desktop -------------------------------------------------------------------------------- /data/aur_pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/aur_pack.sh -------------------------------------------------------------------------------- /data/icons/hicolor/128x128/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/128x128/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/16x16/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/16x16/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/192x192/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/192x192/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/22x22/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/22x22/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/24x24/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/24x24/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/256x256/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/256x256/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/32x32/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/32x32/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/36x36/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/36x36/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/48x48/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/48x48/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/64x64/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/64x64/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/72x72/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/72x72/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/96x96/apps/redshiftgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/96x96/apps/redshiftgui.png -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/apps/redshiftgui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/data/icons/hicolor/scalable/apps/redshiftgui.svg -------------------------------------------------------------------------------- /docs/DoxyCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/docs/DoxyCSS.css -------------------------------------------------------------------------------- /docs/DoxyHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/docs/DoxyHeader.html -------------------------------------------------------------------------------- /docs/DoxyLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/docs/DoxyLogo.png -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/Main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/docs/Main.dox -------------------------------------------------------------------------------- /msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/msvc/stdint.h -------------------------------------------------------------------------------- /scripts/checkgam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/scripts/checkgam.m -------------------------------------------------------------------------------- /scripts/gammars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/scripts/gammars.csv -------------------------------------------------------------------------------- /splint.mts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /splint.xh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/splint.xh -------------------------------------------------------------------------------- /src/MakeTags.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/MakeTags.cmd -------------------------------------------------------------------------------- /src/MakeTags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/MakeTags.sh -------------------------------------------------------------------------------- /src/backends/randr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/backends/randr.c -------------------------------------------------------------------------------- /src/backends/randr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/backends/randr.h -------------------------------------------------------------------------------- /src/backends/vidmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/backends/vidmode.c -------------------------------------------------------------------------------- /src/backends/vidmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/backends/vidmode.h -------------------------------------------------------------------------------- /src/backends/w32gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/backends/w32gdi.c -------------------------------------------------------------------------------- /src/backends/w32gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/backends/w32gdi.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/common.h -------------------------------------------------------------------------------- /src/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gamma.c -------------------------------------------------------------------------------- /src/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gamma.h -------------------------------------------------------------------------------- /src/gamma_vals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gamma_vals.h -------------------------------------------------------------------------------- /src/gui/gtkgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/gtkgui.c -------------------------------------------------------------------------------- /src/gui/gtkgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/gtkgui.h -------------------------------------------------------------------------------- /src/gui/iupgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui.c -------------------------------------------------------------------------------- /src/gui/iupgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui.h -------------------------------------------------------------------------------- /src/gui/iupgui_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_gamma.c -------------------------------------------------------------------------------- /src/gui/iupgui_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_gamma.h -------------------------------------------------------------------------------- /src/gui/iupgui_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_location.c -------------------------------------------------------------------------------- /src/gui/iupgui_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_location.h -------------------------------------------------------------------------------- /src/gui/iupgui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_main.c -------------------------------------------------------------------------------- /src/gui/iupgui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_main.h -------------------------------------------------------------------------------- /src/gui/iupgui_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_settings.c -------------------------------------------------------------------------------- /src/gui/iupgui_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/iupgui_settings.h -------------------------------------------------------------------------------- /src/gui/win32gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/win32gui.c -------------------------------------------------------------------------------- /src/gui/win32gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/win32gui.h -------------------------------------------------------------------------------- /src/gui/win32gui_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/win32gui_gamma.c -------------------------------------------------------------------------------- /src/gui/win32gui_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/gui/win32gui_gamma.h -------------------------------------------------------------------------------- /src/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/location.c -------------------------------------------------------------------------------- /src/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/location.h -------------------------------------------------------------------------------- /src/netutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/netutils.c -------------------------------------------------------------------------------- /src/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/netutils.h -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/options.c -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/options.h -------------------------------------------------------------------------------- /src/redshiftgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/redshiftgui.c -------------------------------------------------------------------------------- /src/resources/redshift-idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/resources/redshift-idle.c -------------------------------------------------------------------------------- /src/resources/redshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/resources/redshift.c -------------------------------------------------------------------------------- /src/resources/sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/resources/sun.c -------------------------------------------------------------------------------- /src/resources/sunback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/resources/sunback.c -------------------------------------------------------------------------------- /src/solar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/solar.c -------------------------------------------------------------------------------- /src/solar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/solar.h -------------------------------------------------------------------------------- /src/systemtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/systemtime.c -------------------------------------------------------------------------------- /src/systemtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/systemtime.h -------------------------------------------------------------------------------- /src/thirdparty/argparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/thirdparty/argparser.c -------------------------------------------------------------------------------- /src/thirdparty/argparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/thirdparty/argparser.h -------------------------------------------------------------------------------- /src/thirdparty/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/thirdparty/logger.c -------------------------------------------------------------------------------- /src/thirdparty/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/thirdparty/logger.h -------------------------------------------------------------------------------- /src/thirdparty/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/thirdparty/stb_image.c -------------------------------------------------------------------------------- /src/thirdparty/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/thirdparty/stb_image.h -------------------------------------------------------------------------------- /src/win32/Redshiftgui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/Redshiftgui.rc -------------------------------------------------------------------------------- /src/win32/app.64.manifest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/app.64.manifest.in -------------------------------------------------------------------------------- /src/win32/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/app.ico -------------------------------------------------------------------------------- /src/win32/app.manifest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/app.manifest.in -------------------------------------------------------------------------------- /src/win32/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/app.rc -------------------------------------------------------------------------------- /src/win32/app.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/app.rc.in -------------------------------------------------------------------------------- /src/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoserr/redshiftgui/HEAD/src/win32/resource.h --------------------------------------------------------------------------------