mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-02-12 11:21:53 +00:00
Fixed README and setup.py after dropping qtbase5-dev and pyopengl
This commit is contained in:
parent
9b2925b428
commit
aba7c949b5
3 changed files with 6 additions and 8 deletions
|
@ -36,19 +36,19 @@ rm virtscreen_0.2.1-1_all.deb
|
||||||
|
|
||||||
### Arch Linux (AUR)
|
### Arch Linux (AUR)
|
||||||
|
|
||||||
There is [`virtscreen` AUR package](https://aur.archlinux.org/packages/virtscreen/) available. Though there are many ways to install the AUR package, one of the easiest way is to use [`aurman`](https://github.com/polygamma/aurman) AUR helper:
|
There is [`virtscreen` AUR package](https://aur.archlinux.org/packages/virtscreen/) available. Though there are many ways to install the AUR package, one of the easiest way is to use [`yaourt`](https://github.com/polygamma/aurman) AUR helper:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
aurman -S virtscreen
|
yaourt virtscreen
|
||||||
```
|
```
|
||||||
|
|
||||||
### Python `pip`
|
### 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.
|
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`](https://github.com/LibVNC/x11vnc), `xrandr`, and PyQt5 libraries. To install (e.g. on Ubuntu):
|
You need [`x11vnc`](https://github.com/LibVNC/x11vnc), `xrandr`. To install (e.g. on Ubuntu):
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get install x11vnc qtbase5-dev # On Debian/Ubuntu, xrandr is included.
|
sudo apt-get install x11vnc # On Debian/Ubuntu, xrandr is included.
|
||||||
```
|
```
|
||||||
|
|
||||||
After you install the dependancies then run:
|
After you install the dependancies then run:
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -147,8 +147,7 @@ setup(
|
||||||
install_requires=['PyQt5>=5.10.1',
|
install_requires=['PyQt5>=5.10.1',
|
||||||
'Twisted>=17.9.0',
|
'Twisted>=17.9.0',
|
||||||
'qt5reactor>=0.5',
|
'qt5reactor>=0.5',
|
||||||
'netifaces>=0.10.6',
|
'netifaces>=0.10.6'], # Optional
|
||||||
'PyOpenGL>=3.1.0'], # Optional
|
|
||||||
|
|
||||||
# List additional groups of dependencies here (e.g. development
|
# List additional groups of dependencies here (e.g. development
|
||||||
# dependencies). Users will be able to install these using the "extras"
|
# dependencies). Users will be able to install these using the "extras"
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Encoding=UTF-8
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Name=VirtScreen
|
Name=VirtScreen
|
||||||
Comment=Make your iPad/tablet/computer as a secondary monitor on Linux
|
Comment=Make your iPad/tablet/computer as a secondary monitor on Linux
|
||||||
Exec=bash -c "export PATH=$PATH:$HOME/.local/bin; virtscreen"
|
Exec=bash -c "export PATH=\\$PATH:\\$HOME/.local/bin; virtscreen"
|
||||||
Icon=virtscreen
|
Icon=virtscreen
|
||||||
Terminal=false
|
Terminal=false
|
||||||
StartupNotify=false
|
StartupNotify=false
|
||||||
|
|
Loading…
Reference in a new issue