We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6382c16 commit b23b865Copy full SHA for b23b865
crates/muvm/src/guest/bin/muvm-guest.rs
@@ -41,6 +41,14 @@ fn main() -> Result<ExitCode> {
41
bridge_loop_with_listenfd::<X11ProtocolHandler>(|| "/tmp/.X11-unix/X1".to_owned());
42
return Ok(ExitCode::SUCCESS);
43
},
44
+ "muvm-hidpipe" => {
45
+ let config_path =
46
+ env::var("MUVM_REMOTE_CONFIG").context("expected MUVM_REMOTE_CONFIG to be set")?;
47
+ let options = parse_config(config_path)?;
48
+ let uid = options.uid;
49
+ start_hidpipe(uid);
50
+ return Ok(ExitCode::SUCCESS);
51
+ },
52
"muvm-remote" => {
53
let rt = tokio::runtime::Runtime::new().unwrap();
54
let mut command_args = env::args().skip(1);
0 commit comments