add comments, readme, screenshots, ...
This commit is contained in:
parent
55d1a31d43
commit
8ed2e7c60e
2 changed files with 13 additions and 13 deletions
22
README.md
22
README.md
|
@ -18,19 +18,10 @@ Dependencies
|
|||
- getpass
|
||||
- GTK libs
|
||||
|
||||
Manual install
|
||||
--------------
|
||||
|
||||
On Ubuntu :
|
||||
|
||||
- Create a directory named `quodlibetLCDScreen` in `~/.quodlibet/plugins`
|
||||
- Copy `quodlibetLCDScreen.py` in this directory
|
||||
- Open Quodlibet and activate the plugin, you should see a `Hello <your_username>` on the screen
|
||||
|
||||
Udev rules
|
||||
----------
|
||||
|
||||
- On Ubuntu, add this rules in `/etc/udev/rules.d/51-lcd2usb.rules`
|
||||
- On Ubuntu, add this rule in `/etc/udev/rules.d/51-lcd2usb.rules`
|
||||
|
||||
```shell scriptll
|
||||
# Find your device information with command "lsusb"
|
||||
|
@ -45,6 +36,15 @@ SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTR{idVendor}=="0403", ATTR{idPro
|
|||
|
||||
- Then reboot computer or refresh udev : `sudo udevadm control --reload-rules`
|
||||
|
||||
Manual install
|
||||
--------------
|
||||
|
||||
On Ubuntu :
|
||||
|
||||
- Create a directory named `quodlibetLCDScreen` in `~/.quodlibet/plugins`
|
||||
- Copy `quodlibetLCDScreen.py` in this directory
|
||||
- Open Quodlibet and activate the plugin, you should see a `Hello <your_username>` on the screen
|
||||
|
||||
Screenshots
|
||||
-----------
|
||||
|
||||
|
@ -58,7 +58,7 @@ Credits
|
|||
This script has been written by Francois B. (Makotosan)
|
||||
|
||||
* Email : francois@makotonoblog.be
|
||||
* Website : https://makotonoblog.be
|
||||
* Website : https://makotonoblog.be/quodlibetlcdscreen
|
||||
|
||||
Licence
|
||||
-------
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
quodlibetLCDScreen
|
||||
author : Francois B. (Makotosan/Shakasan)
|
||||
licence : GPLv3
|
||||
website : https://makotonoblog.be
|
||||
website : https://makotonoblog.be/quodlibetlcdscreen
|
||||
repository : https://github.com/shakasan/quodlibetLCDScreen
|
||||
"""
|
||||
|
||||
|
@ -105,7 +105,7 @@ class MyPlugin(EventPlugin):
|
|||
gridAbout.attach(lblval_plugin_author, 1, 2, 1, 1)
|
||||
# Plugin website
|
||||
lbl_plugin_website = labelTitle('Website : ')
|
||||
lblval_plugin_website = labelMarkup('<a href="https://makotonoblog.be/quodlibetLCDScreen">https://makotonoblog.be/quodlibetLCDScreen</a>')
|
||||
lblval_plugin_website = labelMarkup('<a href="https://makotonoblog.be/quodlibetLCDScreen">https://makotonoblog.be/quodlibetlcdscreen</a>')
|
||||
gridAbout.attach(lbl_plugin_website, 0, 3, 1, 1)
|
||||
gridAbout.attach(lblval_plugin_website, 1, 3, 1, 1)
|
||||
# Plugin repository
|
||||
|
|
Loading…
Add table
Reference in a new issue