Initial commit: Vue.js тир управления система
- Клиентская часть Vue 3 + Vite - Серверная часть Node.js + WebSocket - Система авторизации и смен - Управление игровыми портами - Поддержка тем (светлая/темная) - Адаптивный дизайн 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
14
server/temp_radio.ps1
Normal file
14
server/temp_radio.ps1
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
Add-Type -AssemblyName presentationCore
|
||||
$player = New-Object System.Windows.Media.MediaPlayer
|
||||
$player.Open([System.Uri]"http://nashe1.hostingradio.ru/nashe-128.mp3")
|
||||
$player.Volume = 0.46
|
||||
$player.Play()
|
||||
|
||||
# Выводим PID процесса
|
||||
Write-Host "PID:$PID"
|
||||
|
||||
# Держим процесс активным и слушаем команды
|
||||
while ($true) {
|
||||
Start-Sleep -Seconds 1
|
||||
}
|
||||
Reference in New Issue
Block a user