mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 03:29:24 +01:00
16 lines
368 B
Python
Executable File
16 lines
368 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import dbus
|
|
import sys
|
|
|
|
if len(sys.argv) != 2:
|
|
print("Usage: %s device" % (sys.argv[0]))
|
|
sys.exit(1)
|
|
|
|
bus = dbus.SystemBus()
|
|
device = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
|
|
"org.freedesktop.DBus.Properties")
|
|
|
|
powered = device.Get("net.connman.iwd.Device", "Powered")
|
|
print("Powered: %d" % powered)
|