mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-22 12:50:53 +00:00
fix whitespace
This commit is contained in:
parent
c32e3995db
commit
0a7b8e0662
@ -2,10 +2,10 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/eiannone/keyboard"
|
"github.com/eiannone/keyboard"
|
||||||
"github.com/onyx-and-iris/voicemeeter-api-go"
|
"github.com/onyx-and-iris/voicemeeter-api-go"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -16,7 +16,7 @@ func main() {
|
|||||||
_ = keyboard.Close()
|
_ = keyboard.Close()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
vm, err := voicemeeter.NewRemote("potato", 0)
|
vm, err := voicemeeter.NewRemote("potato", 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
@ -28,30 +28,30 @@ func main() {
|
|||||||
defer vm.Logout()
|
defer vm.Logout()
|
||||||
|
|
||||||
fmt.Println("Press ESC to quit")
|
fmt.Println("Press ESC to quit")
|
||||||
Loop:
|
Loop:
|
||||||
for {
|
for {
|
||||||
char, key, err := keyboard.GetKey()
|
char, key, err := keyboard.GetKey()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
|
||||||
|
|
||||||
switch char {
|
|
||||||
case '0':
|
|
||||||
fmt.Printf("Logged into Voicemeeter %s, version %s\n", vm.Type(), vm.Version())
|
|
||||||
case '1':
|
|
||||||
vm.Strip[0].SetMute(!vm.Strip[0].GetMute())
|
|
||||||
case '2':
|
|
||||||
if vm.Strip[3].GetGain() == -12.8 {
|
|
||||||
vm.Strip[3].FadeBy(-8.3, 500)
|
|
||||||
} else {
|
|
||||||
vm.Strip[3].FadeTo(-12.8, 500)
|
|
||||||
}
|
|
||||||
case '3':
|
|
||||||
vm.Strip[5].AppMute("Spotify", true)
|
|
||||||
default:
|
|
||||||
if key == keyboard.KeyEsc {
|
|
||||||
break Loop
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
switch char {
|
||||||
|
case '0':
|
||||||
|
fmt.Printf("Logged into Voicemeeter %s, version %s\n", vm.Type(), vm.Version())
|
||||||
|
case '1':
|
||||||
|
vm.Strip[0].SetMute(!vm.Strip[0].GetMute())
|
||||||
|
case '2':
|
||||||
|
if vm.Strip[3].GetGain() == -12.8 {
|
||||||
|
vm.Strip[3].FadeBy(-8.3, 500)
|
||||||
|
} else {
|
||||||
|
vm.Strip[3].FadeTo(-12.8, 500)
|
||||||
|
}
|
||||||
|
case '3':
|
||||||
|
vm.Strip[5].AppMute("Spotify", true)
|
||||||
|
default:
|
||||||
|
if key == keyboard.KeyEsc {
|
||||||
|
break Loop
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user