mirror of
https://github.com/albfan/miraclecast.git
synced 2025-03-09 23:38:56 +00:00
Basic support for UIBC (single mouse events and key events) - Option --uibc on miracle-sinkctl to enable it - Option --log-journal-level to see player execution on journalctl - Controller for uibc miracle-uibcctl - Player based on PyGtk to receive and communicate mouse and keyevents closes #57
8 lines
100 B
Bash
Executable file
8 lines
100 B
Bash
Executable file
#!/bin/bash
|
|
|
|
IP=$1
|
|
shift
|
|
UIBC_PORT=$1
|
|
shift
|
|
|
|
gstplayer $@ | miracle-uibcctl $IP $UIBC_PORT --daemon
|