Skip to content

Instantly share code, notes, and snippets.

View AyzekUorren's full-sized avatar
🏠
Working from home

AyzekUorren AyzekUorren

🏠
Working from home
View GitHub Profile
@AyzekUorren
AyzekUorren / toggle-hide-show-windows-taskbar.py
Last active September 15, 2025 13:51
Simple script to hide / show windows taskbar
import ctypes
import keyboard
FindWindow = ctypes.windll.user32.FindWindowW
ShowWindow = ctypes.windll.user32.ShowWindow
TASKBAR = FindWindow("Shell_TrayWnd", None)
START_BUTTON = FindWindow("Button", None)
visible = True