#!/usr/bin/env python3
"""
set_disable_storage_sense_notifications.py

Disable Storage Sense Low-Space Notifications.
Silences low-disk-space notifications from Storage Sense.

Usage:
    python set_disable_storage_sense_notifications.py
"""

import winreg


def main() -> None:
    key = winreg.CreateKeyEx(
        winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy", 0, winreg.KEY_SET_VALUE
    )
    winreg.SetValueEx(key, "512", 0, winreg.REG_DWORD, 0)
    winreg.CloseKey(key)
    print("Disable Storage Sense Low-Space Notifications applied.")


if __name__ == "__main__":
    main()