Moved development to Github

This commit is contained in:
2025-08-12 20:28:20 +02:00
parent 17e9084907
commit 14c7fa8f15
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ This software allows mapping and translating of MIDI commands to HID inputs on L
Install with
```bash
go install git.datalore.sh/datalore/midi-hid@latest
go install github.com/d4t4l0r3/midi-hid@latest
```
and run it with `midi-hid`. If no config file is specified, it reads `~/.config/midi-hid/config.yaml`.

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"os"
"git.datalore.sh/datalore/midi-hid/translation"
"github.com/d4t4l0r3/midi-hid/translation"
"github.com/goccy/go-yaml"
"github.com/bendahl/uinput"

2
go.mod
View File

@@ -1,4 +1,4 @@
module git.datalore.sh/datalore/midi-hid
module github.com/d4t4l0r3/midi-hid
go 1.24.5

View File

@@ -5,7 +5,7 @@ import (
"os"
"os/signal"
"git.datalore.sh/datalore/midi-hid/config"
"github.com/d4t4l0r3/midi-hid/config"
"github.com/charmbracelet/log"
"gitlab.com/gomidi/midi/v2"