add comments, readme, screenshots, ...

This commit is contained in:
Francois B. (Makoto) 2020-10-19 20:37:44 +02:00
parent 55d1a31d43
commit 8ed2e7c60e
2 changed files with 13 additions and 13 deletions

View file

@ -18,19 +18,10 @@ Dependencies
- getpass - getpass
- GTK libs - 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 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 ```shell scriptll
# Find your device information with command "lsusb" # 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` - 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 Screenshots
----------- -----------
@ -58,7 +58,7 @@ Credits
This script has been written by Francois B. (Makotosan) This script has been written by Francois B. (Makotosan)
* Email : francois@makotonoblog.be * Email : francois@makotonoblog.be
* Website : https://makotonoblog.be * Website : https://makotonoblog.be/quodlibetlcdscreen
Licence Licence
------- -------

View file

@ -2,7 +2,7 @@
quodlibetLCDScreen quodlibetLCDScreen
author : Francois B. (Makotosan/Shakasan) author : Francois B. (Makotosan/Shakasan)
licence : GPLv3 licence : GPLv3
website : https://makotonoblog.be website : https://makotonoblog.be/quodlibetlcdscreen
repository : https://github.com/shakasan/quodlibetLCDScreen repository : https://github.com/shakasan/quodlibetLCDScreen
""" """
@ -105,7 +105,7 @@ class MyPlugin(EventPlugin):
gridAbout.attach(lblval_plugin_author, 1, 2, 1, 1) gridAbout.attach(lblval_plugin_author, 1, 2, 1, 1)
# Plugin website # Plugin website
lbl_plugin_website = labelTitle('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(lbl_plugin_website, 0, 3, 1, 1)
gridAbout.attach(lblval_plugin_website, 1, 3, 1, 1) gridAbout.attach(lblval_plugin_website, 1, 3, 1, 1)
# Plugin repository # Plugin repository