https://github.com/0x464e/transparent-click-through-notifications
Makes your Windows notifications transparent and click-through
https://github.com/0x464e/transparent-click-through-notifications
notifications quality-of-life windows
Last synced: about 1 month ago
JSON representation
Makes your Windows notifications transparent and click-through
- Host: GitHub
- URL: https://github.com/0x464e/transparent-click-through-notifications
- Owner: 0x464e
- Created: 2021-07-29T12:00:08.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-31T23:17:13.000Z (about 4 years ago)
- Last Synced: 2025-02-21T14:19:35.616Z (8 months ago)
- Topics: notifications, quality-of-life, windows
- Language: AutoHotkey
- Homepage:
- Size: 2.93 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transparent Click-Through Windows Notifications
This AutoHotkey script makes your Windows notifications transparent and click-through.
I made this because in certain non-full-screen games the Windows notifications would get in my way, but I still wouldn't want to disable them totally.
Making the notifications semi-transparent and click-through is a good middle ground.
## Installing
>**AutoHotkey is Windows only!**
* Install [AutoHotkey](https://www.autohotkey.com/)
* Download the [`.ahk` file](https://raw.githubusercontent.com/0x464e/transparent-click-through-notifications/master/TransparentClickThroughNotifications.ahk) from this repository
* Run the the file by just double clicking it
(If the AHK installation would've somehow failed to associate `.ahk` files with the AHK interpreter, you can manually run `.ahk` files by just passing in the file to the interpreter, which is found in your AHK installation directory (usually `C:\Program Files\AutoHotkey\AutoHotkey.exe`))
Portable versions can be created if you have AHK installed by just right clicking the `.ahk` file and choosing `Compile Script`.
This packs the AHK interpreter and the script file to one `.exe`.## Usage
Just launch the script and you're all set with a transparency degree of 150.
The scale goes from 0-255 (transparent-opaque).
The hotkey `Ctrl` + `END` is set by default to toggle on/off.
Examples of specifying more hotkeys:
```ahk
F6::SetTransparency(50) ;toggle on off with transparency degree of 50
F7::SetTransparency(200, true) ;turn on with transparency degree of 200
F8::SetTransparency(, false) ;turn off
```
Consult the [AHK documentation](https://www.autohotkey.com/docs/Hotkeys.htm) for a tutorial on defining hotkeys.---
The script also comes with two hotstrings, one to get a test notification and one to exit the script:
* Type "cooltestnotification" anywhere on your computer to get a test notification
* Type "coolexitnotification" anywhere on your computer to exit the application