mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-26 11:48:33 +02:00
i3-companion: listen on generic of.DBus.Properties for wireless signal
NM 1.32 does not have the custom property anymore.
This commit is contained in:
parent
c513f4a3ea
commit
3d8dbf58e3
1 changed files with 6 additions and 2 deletions
|
@ -873,9 +873,13 @@ async def network_manager_notifications(i3, event, path, state, reason):
|
||||||
signature="uu",
|
signature="uu",
|
||||||
),
|
),
|
||||||
DBusSignal(
|
DBusSignal(
|
||||||
interface="org.freedesktop.NetworkManager.AccessPoint",
|
path="/org/freedesktop/NetworkManager/AccessPoint",
|
||||||
|
interface="org.freedesktop.DBus.Properties",
|
||||||
member="PropertiesChanged",
|
member="PropertiesChanged",
|
||||||
signature="a{sv}",
|
signature="sa{sv}as",
|
||||||
|
onlyif=lambda args: (
|
||||||
|
args[0] == "org.freedesktop.NetworkManager.AccessPoint"
|
||||||
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
@retry(2)
|
@retry(2)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue