Skip to content

Instantly share code, notes, and snippets.

View 0xernesto's full-sized avatar
💻

Ernesto Ramirez 0xernesto

💻
View GitHub Profile
@plivox
plivox / auto_switch_theme.py
Last active April 24, 2025 15:45
Automatic iTerm2 preset switching on MacOS
#!/usr/bin/env python3
import asyncio
import iterm2
THEME_LIGHT = "Tango Light"
THEME_DARK = "Tango Dark"
class AutoSwitchTheme: