modules.rst: Add more module dependency info

This commit is contained in:
John Vandenberg 2020-07-18 09:54:02 +07:00
parent f75f1a9f26
commit 6298b3a51e
2 changed files with 55 additions and 7 deletions

View file

@ -1,7 +1,7 @@
# -*- coding: UTF-8 -*- # -*- coding: UTF-8 -*-
# pylint: disable=C0111,R0903 # pylint: disable=C0111,R0903
"""Display a stock quote from worldtradingdata.com """Display a stock quote from finance.yahoo.com
Requires the following python packages: Requires the following python packages:
* requests * requests

View file

@ -12,6 +12,7 @@ Displays CPU utilization across all CPUs.
Requirements: Requirements:
* the psutil Python module for the first three items from the list above * the psutil Python module for the first three items from the list above
* gnome-system-monitor for mouse clicks
Parameters: Parameters:
* cpu.warning : Warning threshold in % of CPU usage (defaults to 70%) * cpu.warning : Warning threshold in % of CPU usage (defaults to 70%)
@ -97,6 +98,8 @@ load
Displays system load. Displays system load.
Opens `gnome-system-monitor` on left mouse click.
Parameters: Parameters:
* load.warning : Warning threshold for the one-minute load average (defaults to 70% of the number of CPUs) * load.warning : Warning threshold for the one-minute load average (defaults to 70% of the number of CPUs)
* load.critical: Critical threshold for the one-minute load average (defaults to 80% of the number of CPUs) * load.critical: Critical threshold for the one-minute load average (defaults to 80% of the number of CPUs)
@ -108,6 +111,8 @@ memory
Displays available RAM, total amount of RAM and percentage available. Displays available RAM, total amount of RAM and percentage available.
Opens `gnome-system-monitor` on left mouse click.
Parameters: Parameters:
* memory.warning : Warning threshold in % of memory used (defaults to 80%) * memory.warning : Warning threshold in % of memory used (defaults to 80%)
* memory.critical: Critical threshold in % of memory used (defaults to 90%) * memory.critical: Critical threshold in % of memory used (defaults to 90%)
@ -124,6 +129,9 @@ Displays the name, IP address(es) and status of each available network interface
Requires the following python module: Requires the following python module:
* netifaces * netifaces
Requires the following executable:
* iwgetid
Parameters: Parameters:
* nic.exclude: Comma-separated list of interface prefixes to exclude (defaults to 'lo,virbr,docker,vboxnet,veth,br') * nic.exclude: Comma-separated list of interface prefixes to exclude (defaults to 'lo,virbr,docker,vboxnet,veth,br')
* nic.include: Comma-separated list of interfaces to include * nic.include: Comma-separated list of interfaces to include
@ -252,6 +260,9 @@ Copy passwords from a password store into the clipboard (currently supports only
Many thanks to [@bbernhard](https://github.com/bbernhard) for the idea! Many thanks to [@bbernhard](https://github.com/bbernhard) for the idea!
Requires the following executable:
* pass (aka password-store)
Parameters: Parameters:
* vault.duration: Duration until password is cleared from clipboard (defaults to 30) * vault.duration: Duration until password is cleared from clipboard (defaults to 30)
* vault.location: Location of the password store (defaults to ~/.password-store) * vault.location: Location of the password store (defaults to ~/.password-store)
@ -291,6 +302,9 @@ amixer
get volume level or control it get volume level or control it
Requires the following executable:
* amixer
Parameters: Parameters:
* amixer.device: Device to use (default is Master,0) * amixer.device: Device to use (default is Master,0)
* amixer.percent_change: How much to change volume by when scrolling on the module (default is 4%) * amixer.percent_change: How much to change volume by when scrolling on the module (default is 4%)
@ -343,6 +357,8 @@ battery
Displays battery status, remaining percentage and charging information. Displays battery status, remaining percentage and charging information.
Opens `gnome-power-statistics` on left mouse click.
Parameters: Parameters:
* battery.device : Comma-separated list of battery devices to read information from (defaults to auto for auto-detection) * battery.device : Comma-separated list of battery devices to read information from (defaults to auto for auto-detection)
* battery.warning : Warning threshold in % of remaining charge (defaults to 20) * battery.warning : Warning threshold in % of remaining charge (defaults to 20)
@ -361,6 +377,8 @@ battery-upower
Displays battery status, remaining percentage and charging information. Displays battery status, remaining percentage and charging information.
Opens `gnome-power-statistics` on left mouse click.
Parameters: Parameters:
* battery-upower.warning : Warning threshold in % of remaining charge (defaults to 20) * battery-upower.warning : Warning threshold in % of remaining charge (defaults to 20)
* battery-upower.critical : Critical threshold in % of remaining charge (defaults to 10) * battery-upower.critical : Critical threshold in % of remaining charge (defaults to 10)
@ -371,7 +389,7 @@ contributed by `martindoublem <https://github.com/martindoublem>`_ - many thanks
bluetooth bluetooth
~~~~~~~~~ ~~~~~~~~~
Displays bluetooth status (Bluez). Left mouse click launches manager app, Displays bluetooth status (Bluez). Left mouse click launches manager app `blueman-manager`,
right click toggles bluetooth. Needs dbus-send to toggle bluetooth state. right click toggles bluetooth. Needs dbus-send to toggle bluetooth state.
Parameters: Parameters:
@ -388,9 +406,9 @@ contributed by `brunosmmm <https://github.com/brunosmmm>`_ - many thanks!
bluetooth2 bluetooth2
~~~~~~~~~~ ~~~~~~~~~~
Displays bluetooth status. Left mouse click launches manager app, Displays bluetooth status. Left mouse click launches manager app `blueman-manager`,
right click toggles bluetooth. Needs dbus-send to toggle bluetooth state and right click toggles bluetooth. Needs dbus-send to toggle bluetooth state and
python-dbus to count the number of connections python-dbus to count the number of connections.
Parameters: Parameters:
* bluetooth.manager : application to launch on click (blueman-manager) * bluetooth.manager : application to launch on click (blueman-manager)
@ -402,6 +420,11 @@ brightness
Displays the brightness of a display Displays the brightness of a display
The following executables can be used if `use_acpi` is not enabled:
* brightnessctl
* light
* xbacklight
Parameters: Parameters:
* brightness.step: The amount of increase/decrease on scroll in % (defaults to 2) * brightness.step: The amount of increase/decrease on scroll in % (defaults to 2)
* brightness.device_path: The device path (defaults to /sys/class/backlight/intel_backlight), can contain wildcards (in this case, the first matching path will be used); This is only used when brightness.use_acpi is set to true * brightness.device_path: The device path (defaults to /sys/class/backlight/intel_backlight), can contain wildcards (in this case, the first matching path will be used); This is only used when brightness.use_acpi is set to true
@ -516,6 +539,10 @@ datetimetz
Displays the current date and time with timezone options. Displays the current date and time with timezone options.
Requires the following python packages:
* tzlocal
* pytz
Parameters: Parameters:
* datetimetz.format : strftime()-compatible formatting string * datetimetz.format : strftime()-compatible formatting string
* datetimetz.timezone : IANA timezone name * datetimetz.timezone : IANA timezone name
@ -656,6 +683,8 @@ Displays the unread GitHub notifications count for a GitHub user using the follo
Requires the following library: Requires the following library:
* requests * requests
Uses `xdg-open` or `x-www-browser` to open web-pages.
Parameters: Parameters:
* github.token: GitHub user access token, the token needs to have the 'notifications' scope. * github.token: GitHub user access token, the token needs to have the 'notifications' scope.
* github.interval: Interval in minutes between updates, default is 5. * github.interval: Interval in minutes between updates, default is 5.
@ -711,6 +740,9 @@ indicator
Displays the indicator status, for numlock, scrolllock and capslock Displays the indicator status, for numlock, scrolllock and capslock
Requires the following executable:
* xset
Parameters: Parameters:
* indicator.include: Comma-separated list of interface prefixes to include (defaults to 'numlock,capslock') * indicator.include: Comma-separated list of interface prefixes to include (defaults to 'numlock,capslock')
* indicator.signalstype: If you want the signali type color to be 'critical' or 'warning' (defaults to 'warning') * indicator.signalstype: If you want the signali type color to be 'critical' or 'warning' (defaults to 'warning')
@ -878,10 +910,13 @@ contributed by `RileyRedpath <https://github.com/RileyRedpath>`_ - many thanks!
octoprint octoprint
~~~~~~~~~ ~~~~~~~~~
Displays the Octorpint status and the printer's bed/tools temperature in the status bar. Displays the Octoprint status and the printer's bed/tools temperature in the status bar.
Left click opens a popup which shows the bed & tools temperatures and additionally a livestream of the webcam (if enabled). Left click opens a popup which shows the bed & tools temperatures and additionally a livestream of the webcam (if enabled).
Prerequisites:
* tk python library (usually python-tk or python3-tk, depending on your distribution)
Parameters: Parameters:
* octoprint.address : Octoprint address (e.q: http://192.168.1.3) * octoprint.address : Octoprint address (e.q: http://192.168.1.3)
* octoprint.apitoken : Octorpint API Token (can be obtained from the Octoprint Webinterface) * octoprint.apitoken : Octorpint API Token (can be obtained from the Octoprint Webinterface)
@ -971,7 +1006,8 @@ Parameters:
* prime.nvidiastring: String to use when nvidia is selected (defaults to 'intel') * prime.nvidiastring: String to use when nvidia is selected (defaults to 'intel')
* prime.intelstring: String to use when intel is selected (defaults to 'intel') * prime.intelstring: String to use when intel is selected (defaults to 'intel')
Requires the following executable: Requires the following executables:
* sudo
* prime-select * prime-select
contributed by `jeffeb3 <https://github.com/jeffeb3>`_ - many thanks! contributed by `jeffeb3 <https://github.com/jeffeb3>`_ - many thanks!
@ -1103,6 +1139,10 @@ Parameters:
* smartstatus.drives: in the case of singles which drives to display, separated comma list value, multiple accepted (defaults to 'sda', example:'sda,sdc') * smartstatus.drives: in the case of singles which drives to display, separated comma list value, multiple accepted (defaults to 'sda', example:'sda,sdc')
* smartstatus.show_names: boolean in the form of "True" or "False" to show the name of the drives in the form of sda, sbd, combined or none at all. * smartstatus.show_names: boolean in the form of "True" or "False" to show the name of the drives in the form of sda, sbd, combined or none at all.
Requires the following executables:
* sudo
* smartctl
spaceapi spaceapi
~~~~~~~~ ~~~~~~~~
@ -1137,6 +1177,7 @@ Displays the current song being played and allows pausing, skipping ahead, and s
Requires the following library: Requires the following library:
* python-dbus * python-dbus
* `spotify <https://wiki.manjaro.org/index.php?title=Spotify>`_
Parameters: Parameters:
* spotify.format: Format string (defaults to '{artist} - {title}') * spotify.format: Format string (defaults to '{artist} - {title}')
@ -1153,7 +1194,7 @@ added controls by `LtPeriwinkle <https://github.com/LtPeriwinkle>`_ - many thank
stock stock
~~~~~ ~~~~~
Display a stock quote from worldtradingdata.com Display a stock quote from finance.yahoo.com
Requires the following python packages: Requires the following python packages:
* requests * requests
@ -1173,6 +1214,7 @@ sun
Displays sunrise and sunset times Displays sunrise and sunset times
Requires the following python packages: Requires the following python packages:
* python-dateutil
* requests * requests
* suntime * suntime
@ -1289,6 +1331,9 @@ twmn
Toggle twmn notifications. Toggle twmn notifications.
Requires the following executable:
* systemctl
contributed by `Pseudonick47 <https://github.com/Pseudonick47>`_ - many thanks! contributed by `Pseudonick47 <https://github.com/Pseudonick47>`_ - many thanks!
uptime uptime
@ -1393,6 +1438,9 @@ releases of zfsonlinux regular users couldn't invoke even informative commands s
`zpool list`. If this option is true, command `zpool list` is invoked with sudo. If this option `zpool list`. If this option is true, command `zpool list` is invoked with sudo. If this option
is used, the following (or ekvivalent) must be added to the `sudoers(5)`: is used, the following (or ekvivalent) must be added to the `sudoers(5)`:
Requires the following executable:
* sudo
``` ```
<username/ALL> ALL = (root) NOPASSWD: /usr/bin/zpool list <username/ALL> ALL = (root) NOPASSWD: /usr/bin/zpool list
``` ```