ProxySwitcher/run.ps1

74 lines
2.5 KiB
PowerShell
Raw Normal View History

# Load required assemblies for Windows Forms
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# Create a new NotifyIcon
$trayIcon = New-Object System.Windows.Forms.NotifyIcon
# Use a default application icon
2024-08-30 15:13:25 +00:00
$trayIcon.Icon = './assets/ICON_Disabled.ico'
$trayIcon.Text = 'ProxySwitcher'
$trayIcon.Visible = $true
# Create the context menu
$contextMenu = New-Object System.Windows.Forms.ContextMenuStrip
2024-08-30 13:30:34 +00:00
# Add "Open Internet Options" menu item
$ctxProperties = New-Object System.Windows.Forms.ToolStripMenuItem
$ctxProperties.Text = 'Properties'
$ctxProperties.Add_Click({
Start-Process rundll32.exe -ArgumentList 'shell32.dll,Control_RunDLL', 'inetcpl.cpl,,4'
})
# Add "Enable Proxy Setting" menu item
$ctxEnable = New-Object System.Windows.Forms.ToolStripMenuItem
$ctxEnable.Text = 'Enable Proxy'
$ctxEnable.Add_Click({
2024-08-30 15:13:25 +00:00
$trayIcon.Icon = './assets/ICON_Enabled.ico'
2024-08-30 13:30:34 +00:00
Start-Process powershell.exe -ArgumentList '-Command', 'go run . set'
})
# Add "Disable Proxy Setting" menu item
$ctxDisable = New-Object System.Windows.Forms.ToolStripMenuItem
$ctxDisable.Text = 'Disable Proxy'
$ctxDisable.Add_Click({
2024-08-30 15:13:25 +00:00
$trayIcon.Icon = './assets/ICON_Disabled.ico'
2024-08-30 13:30:34 +00:00
Start-Process powershell.exe -ArgumentList '-Command', 'go run . unset'
})
2024-08-30 14:15:40 +00:00
# Add "Save Proxy Setting" menu item
$ctxSave = New-Object System.Windows.Forms.ToolStripMenuItem
$ctxSave.Text = 'Save New Config'
2024-08-30 14:15:40 +00:00
$ctxSave.Add_Click({
Start-Process powershell.exe -ArgumentList '-Command', 'go run . save'
})
# Add "Exit" menu item
$ctxExit = New-Object System.Windows.Forms.ToolStripMenuItem
$ctxExit.Text = 'Exit'
$ctxExit.Add_Click({
# Gracefully exit the application
[System.Windows.Forms.Application]::Exit()
})
# Add menu items to the context menu
2024-08-30 13:30:34 +00:00
$contextMenu.Items.Add($ctxProperties)
$contextMenu.Items.Add($ctxEnable)
$contextMenu.Items.Add($ctxDisable)
2024-08-30 14:15:40 +00:00
$contextMenu.Items.Add($ctxSave)
$contextMenu.Items.Add($ctxExit)
# Assign the context menu to the tray icon
$trayIcon.ContextMenuStrip = $contextMenu
# Start a timer to keep the script running
$timer = New-Object System.Windows.Forms.Timer
$timer.Interval = 1000 # 1 second interval to keep the script alive
$timer.Add_Tick({}) # Empty event handler to keep the timer running
$timer.Start()
# Keep the application running until the exit action is triggered
[System.Windows.Forms.Application]::Run()
# Clean up the tray icon when the application is closed
$trayIcon.Dispose()