-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d91286e
commit c81650c
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Transparent Lock Screen for Windows | ||
(technically a transparent screensaver that also locks) | ||
|
||
It's a screensaver with 1% opacity. Unlike most screensavers, it doesn't end on mouse movement, just on clicks or | ||
keyboard presses. And the last thing it does before it exists is call LockWorkStation() so if someone | ||
tries to use your computer, they'll be presented with the Windows lockscreen. | ||
None of your co-workers will be pranking you now! | ||
|
||
_Currently a derivative of [Write a Screensaver that Actually Works](http://www.codeproject.com/Articles/14081/Write-a-Screensaver-that-Actually-Works), | ||
however I am slowly ripping out the guts to simplify it._ | ||
|
||
## Current Status | ||
It's a personal project. Feel free to download the source & compile it. | ||
|
||
## Similar Software | ||
There are programs out there (e.g. Pro Key Lock, Transparent Screen Lock) that can lock your computer's keyboard/mouse while still showing the running applications, which can be very useful. | ||
However they rely on hacky techniques like intercepting Win32 Messages and they charge money. | ||
Pro Key Lock, for instance, freaked out when I turned on Sticky Keys for my RSI and I had to forcefully reboot my computer. | ||
|
||
After that, I felt there had to be a simpler way to do it that took advantage of Windows native lock screen abilities. So | ||
I made this in about 3 hours. | ||
|