mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-23 07:35:28 +00:00
Actually run the remote control commands from the shell
This commit is contained in:
parent
59edf1d349
commit
b89dfc6d1d
1 changed files with 17 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ import (
|
|||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
|
||||
"github.com/google/shlex"
|
||||
|
|
@ -142,6 +143,22 @@ func exec_command(cmdline string) bool {
|
|||
}
|
||||
}
|
||||
return true
|
||||
default:
|
||||
exe, err := os.Executable()
|
||||
if err != nil {
|
||||
exe, err = exec.LookPath("kitty-tool")
|
||||
if err != nil {
|
||||
fmt.Fprintln(os.Stderr, "Could not find the kitty-tool executable")
|
||||
return false
|
||||
}
|
||||
}
|
||||
cmdline := []string{"kitty-tool", "@"}
|
||||
cmdline = append(cmdline, parsed_cmdline...)
|
||||
cmd := exec.Cmd{Path: exe, Args: cmdline, Stdin: os.Stdin, Stdout: os.Stdout, Stderr: os.Stderr}
|
||||
err = cmd.Run()
|
||||
if err != nil {
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue