|
原版的Windows资源管理器背景颜色默认是白色的,为了更舒适护眼,试图改变背景颜色,加入了一些个性方案,批处理方案执行如下:
REM 视觉效果
REM 设置护眼颜色方案
reg add "HKCU\SOFTWARE\Microsoft\Notepad" /f /v "fWrap" /t REG_DWORD /d "1" 1>nul 2>nul
reg add "HKCU\SOFTWARE\Microsoft\Notepad" /f /v "StatusBar" /t REG_DWORD /d "1" 1>nul 2>nul
reg add "HKU\.DEFAULT\Control Panel\Colors" /f /v "Window" /t REG_SZ /d "204 232 207" 1>nul 2>nul
reg add "HKCU\Control Panel\Colors" /f /v "Window" /t REG_SZ /d "204 232 207" 1>nul 2>nul
reg add "HKCU\Control Panel\Desktop\Colors" /f /v "Window" /t REG_SZ /d "204 232 207" 1>nul 2>nul
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\DefaultColors\Standard" /f /v "Window" /t REG_DWORD /d "13625548" 1>nul 2>nul
REM 让主题颜色随壁纸色调改变
reg add "HKCU\Control Panel\Desktop" /f /v "AutoColorization" /t REG_DWORD /d "1" 1>nul 2>nul
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /f /v "ColorPrevalence" /t REG_DWORD /d "1" 1>nul 2>nul
NotePad窗口是改变成了想要的淡绿色,可是资源管理器背景颜色依旧没有改观,随后应用了黑色主题,资源管理器背景颜色变为黑色了,可是,我并不想要黑色背景,请问,资源管理器背景颜色要改变为自定义,到底该怎么设置?
|
|