1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-03-09 15:40:18 +00:00

First README.

This commit is contained in:
Bumsik Kim 2018-04-25 15:55:05 -04:00
parent 1571514662
commit 711de0f77e
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6
2 changed files with 31 additions and 2 deletions

View file

@ -1,2 +1,31 @@
# VirtScreen
Make your iPad/tablet/computer as a secondary monitor on Linux.
> Make your iPad/tablet/computer as a secondary monitor on Linux.
VirtScreen is an easy-to-use Linux GUI app that creates a virtual secondary screen and shares it through VNC.
VirScreen is based on [PyQt5](https://www.riverbankcomputing.com/software/pyqt/intro) and [Twisted](https://twistedmatrix.com) in Python side and uses [x11vnc](https://github.com/LibVNC/x11vnc) and XRandR.
## Dependency
1. You need [`x11vnc`](https://github.com/LibVNC/x11vnc) and `xrandr`. To install (example on Ubuntu):
```bash
sudo apt-get install x11vnc xrandr
```
2. Install Python dependencies:
```
pip install -r requirements.txt
```
## How to run
Simply run this in the project root:
```bash
./virtscreen.py
or
python virtscreen.py
```

View file

@ -445,4 +445,4 @@ if __name__ == '__main__':
window = Window()
window.show()
sys.exit(app.exec_())
reactor.run()
reactor.run()