1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-02-12 11:21:53 +00:00
No description
Find a file
2018-06-08 18:00:15 -04:00
data Setup.py: Fixed wrong desktop entry path 2018-05-23 23:30:25 -04:00
package Updated packages for v0.2.0 release 2018-06-03 14:04:15 -04:00
virtscreen #7: Added CLI options 2018-06-08 18:00:15 -04:00
.gitignore Improved file organization 2018-05-21 18:51:50 -04:00
launch.sh launch.sh: fixed python binary to system-wide 2018-05-21 18:22:16 -04:00
LICENSE.txt Python pacakge structure and installing it as python packages 2018-05-20 00:48:14 -04:00
Makefile Deb for Ubuntu 16.04 is successful 2018-06-03 11:55:15 -04:00
MANIFEST.in setup.py: install .desktop files, re-organized doc files to data 2018-05-23 18:49:20 -04:00
README.md Updated packages for v0.2.0 release 2018-06-03 14:04:15 -04:00
setup.py Moved qml folder to assets 2018-05-31 01:25:18 -04:00

VirtScreen

Make your iPad/tablet/computer as a secondary monitor on Linux.

gif example

VirtScreen is an easy-to-use Linux GUI app that creates a virtual secondary screen and shares it through VNC.

VirtScreen is based on PyQt5 and Twisted in Python side and uses x11vnc and XRandR.

How to use

Upon installation (see Installing section to install), there will be a desktop entry called VirtScreen

desktop entry

Or you can run it using a command line:

$ virtscreen

Installation

Debian (Ubuntu)

.deb package

sudo apt-get update
sudo apt-get install x11vnc qtbase5-dev
wget https://github.com/kbumsik/VirtScreen/releases/download/0.2.0/virtscreen_0.2.0-1_all.deb
sudo dpkg -i virtscreen_0.2.0-1_all.deb 
rm virtscreen_0.2.0-1_all.deb

Arch Linux (AUR)

There is virtscreen AUR package available. Though there are many ways to install the AUR package, one of the easiest way is to use aurman AUR helper:

aurman -S virtscreen

Python pip

If your distro is none of above, you may install it using pip. In this case, you need to install the dependancies manually.

You need x11vnc, xrandr, and PyQt5 libraries. To install (e.g. on Ubuntu):

sudo apt-get install x11vnc qtbase5-dev  # On Debian/Ubuntu, xrandr is included.

After you install the dependancies then run:

sudo pip install virtscreen