moved icons to assets
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
6
run.ps1
@ -5,7 +5,7 @@ Add-Type -AssemblyName System.Drawing
|
|||||||
# Create a new NotifyIcon
|
# Create a new NotifyIcon
|
||||||
$trayIcon = New-Object System.Windows.Forms.NotifyIcon
|
$trayIcon = New-Object System.Windows.Forms.NotifyIcon
|
||||||
# Use a default application icon
|
# Use a default application icon
|
||||||
$trayIcon.Icon = './ICON_Disabled.ico'
|
$trayIcon.Icon = './assets/ICON_Disabled.ico'
|
||||||
$trayIcon.Text = 'ProxySwitcher'
|
$trayIcon.Text = 'ProxySwitcher'
|
||||||
$trayIcon.Visible = $true
|
$trayIcon.Visible = $true
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ $ctxProperties.Add_Click({
|
|||||||
$ctxEnable = New-Object System.Windows.Forms.ToolStripMenuItem
|
$ctxEnable = New-Object System.Windows.Forms.ToolStripMenuItem
|
||||||
$ctxEnable.Text = 'Enable Proxy'
|
$ctxEnable.Text = 'Enable Proxy'
|
||||||
$ctxEnable.Add_Click({
|
$ctxEnable.Add_Click({
|
||||||
$trayIcon.Icon = './ICON_Enabled.ico'
|
$trayIcon.Icon = './assets/ICON_Enabled.ico'
|
||||||
Start-Process powershell.exe -ArgumentList '-Command', 'go run . set'
|
Start-Process powershell.exe -ArgumentList '-Command', 'go run . set'
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ $ctxEnable.Add_Click({
|
|||||||
$ctxDisable = New-Object System.Windows.Forms.ToolStripMenuItem
|
$ctxDisable = New-Object System.Windows.Forms.ToolStripMenuItem
|
||||||
$ctxDisable.Text = 'Disable Proxy'
|
$ctxDisable.Text = 'Disable Proxy'
|
||||||
$ctxDisable.Add_Click({
|
$ctxDisable.Add_Click({
|
||||||
$trayIcon.Icon = './ICON_Disabled.ico'
|
$trayIcon.Icon = './assets/ICON_Disabled.ico'
|
||||||
Start-Process powershell.exe -ArgumentList '-Command', 'go run . unset'
|
Start-Process powershell.exe -ArgumentList '-Command', 'go run . unset'
|
||||||
})
|
})
|
||||||
|
|
||||||
|