-
Notifications
You must be signed in to change notification settings - Fork 0
/
wifi-conn-strength
executable file
·48 lines (37 loc) · 1.23 KB
/
wifi-conn-strength
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/env python3
import dbus
from sys import exit
if __name__ == "__main__":
bus = dbus.SystemBus()
props_iface = "org.freedesktop.DBus.Properties"
nm_bus = "org.freedesktop.NetworkManager"
nm_obj = "/org/freedesktop/NetworkManager"
nm_iface = "org.freedesktop.NetworkManager"
nm = bus.get_object(nm_bus, nm_obj)
nm_conn_type = nm.Get(
nm_iface,
"PrimaryConnectionType",
dbus_interface = props_iface
)
if nm_conn_type != "802-11-wireless":
print("Primary connection is not Wi-Fi")
exit(1)
nm_conn_obj = nm.Get(
nm_iface,
"PrimaryConnection",
dbus_interface = props_iface
)
nm_conn = bus.get_object(nm_bus, nm_conn_obj)
nm_conn_iface = "org.freedesktop.NetworkManager.Connection.Active"
nm_ap_obj = nm_conn.Get(
nm_conn_iface,
"SpecificObject",
dbus_interface = props_iface
)
nm_ap_iface = "org.freedesktop.NetworkManager.AccessPoint"
nm_ap = bus.get_object(nm_bus, nm_ap_obj)
nm_ap_strength = nm_ap.Get(nm_ap_iface, "Strength", dbus_interface = props_iface)
if nm_ap_strength == None:
print("Failed to get connection strength")
exit(2)
print(int(nm_ap_strength))