Skip to content

Commit

Permalink
Fixed README and setup.py after dropping qtbase5-dev and pyopengl
Browse files Browse the repository at this point in the history
  • Loading branch information
kbumsik committed Jun 24, 2018
1 parent 9b2925b commit aba7c94
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ rm virtscreen_0.2.1-1_all.deb

### 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
aurman -S virtscreen
yaourt 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`](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
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:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,7 @@
install_requires=['PyQt5>=5.10.1',
'Twisted>=17.9.0',
'qt5reactor>=0.5',
'netifaces>=0.10.6',
'PyOpenGL>=3.1.0'], # Optional
'netifaces>=0.10.6'], # Optional

# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
Expand Down
3 changes: 1 addition & 2 deletions virtscreen.desktop
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=VirtScreen
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
Terminal=false
StartupNotify=false
Expand Down

0 comments on commit aba7c94

Please sign in to comment.