Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

This tool allows you to customize your lock screen

License

Notifications You must be signed in to change notification settings

Svyatik-Bak/LockScreenTweaker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LockScreenTweaker

This tool allows you to customize your lock screen

Written in C

GUI written in WinAPI

2022-10-28-13-43-38-999

How to customize with cmd.exe

Disable Lock Screen: reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization /v NoLockScreen /t REG_DWORD /d 1 /f

Enable Lock Screen: reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization /v NoLockScreen /t REG_DWORD /d 0 /f

Disable blur: reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\System /v DisableAcrylicBackgroundOnLogon /t REG_DWORD /d 1 /f

Enable blur: reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\System /v DisableAcrylicBackgroundOnLogon /t REG_DWORD /d 0 /f

Compiling

gcc -o LockScreenTweaker.exe LockScreenTweaker.c res.o -lgdi32