Update: use PowerShell script PythonEmbed4Win.ps1.
The instructions in this gist have some subtle problems and this gist will not be updated.
The instructions in this gist have some subtle problems and this gist will not be updated.
This guide will walk you through setting up a remote-accessible Claude Code environment using tmux, Bitvise SSH Server, and playit.gg so you can attach to your running Claude session from another PC or your phone.
This package provides cross-platform toast notification functionality for Windows and WSL (Windows Subsystem for Linux). Perfect for Claude Code hooks and other automation tasks.
toast commandThis guide covers installing toast notifications for Windows PowerShell/CMD environments.
.claude/settings.json is backed up with a timestampWindows Toast Notifications - WSL Installation Guide with Claude Code integration
This guide covers installing toast notifications for WSL (Windows Subsystem for Linux) and MSYS2/Git Bash environments that integrate with Windows notifications.
| #!/usr/bin/env bash | |
| # Windows Toast Notifications - Bash Installation Script for WSL | |
| # WSL Toast Notification Installer | |
| # This script installs a toast() function for WSL that triggers Windows notifications | |
| # Uses C:\ProgramData\Toast\ for system-wide installation - no user detection needed | |
| set -euo pipefail | |
| # Colors for output | |
| RED='\033[0;31m' |
| #!/usr/bin/env bash | |
| # WSL Toast Notification Uninstaller | |
| # This script removes the toast() function from WSL shell configurations | |
| # Usage: bash wsl_toast_uninstall.sh | |
| set -euo pipefail | |
| # Colors for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
| #!/usr/bin/env bash | |
| # macOS Toast Notification Installer | |
| # This script installs a toast() function for macOS using native AppleScript | |
| # Usage: bash macos_toast_install.sh | |
| set -euo pipefail | |
| # Colors for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |