made the module sensors2 selective by adding the following parameters and their handling:
* sensors2.chip_include: Comma-separated list of chip to include (defaults to "" will include all by default, example: "coretemp,bat")
* sensors2.chip_exlude:Comma separated list of chip to exclude (defaults to "" will include none by default)
* sensors2.field_include: Comma separated list of chip to include (defaults to "" will include all by default, example: "temp,fan")
* sensors2.field_exlude: Comma separated list of chip to exclude (defaults to "" will exclude none by default)
* sensors2.chip_field_exclude: Comma separated list of chip field to exclude (defaults to "" will exclude none by default, example: "coretemp-isa-0000.temp1,coretemp-isa-0000.fan1")
* sensors2.chip_field_include: Comma-separated list of adaper field to include (defaults to "" will include all by default)
The chip, field are findable by using sensors -u
I was unhappy with how the module bluetooth functioned so I decided to write a new one
This is the result. The module tries to find adapters ON with bluetoothctl list initally
if none are there, then it assumes it is off and check if any adapters are present with rfkill list
State were added
as well as the number of devices
I also made it so that the toggle works
I was initally going to push this as bluetooth but decided it was so different so to push it as a different module.
python-dbus is a dependency
This fixes a rough edge in cpu2 module where variable size of total cpu
load value string was making the whole bar slide during updates. CPU
load is right-alligned now and takes 3 chars in the widget, so load can
go up to 100 and still fit.
The vpn module is trying to connect "self._connected_vpn_profile", but it is None when no VPN is connected. As a result, the VPN connecting menu is not working. Use "self._selected_vpn_profile" to connect the selected one.
As discussed in #556.
- added palette red, orange, yellow, green to nord-powerline
- when used with nord-powerline (or any other theme that has these
palette colors) and cpu2.colored=1, the cpu2 module will use these
custom colors to display core load graphs; when colors are missing
from a theme - it will use default colors
If bumblebee-status is installed from an AUR package, using the relative
binary path might not work, so fall back to the binary installed in
/usr/share.
fixes#536