15 lines
270 B
Python
Executable file
15 lines
270 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import pyric.utils.rfkill as rfkill
|
|
import sys
|
|
|
|
devices = rfkill.rfkill_list()
|
|
|
|
if devices['phy0']['hard']:
|
|
wlan = '#FF0000'
|
|
elif devices['phy0']['soft']:
|
|
wlan = '#FF9900'
|
|
else:
|
|
wlan = '#00FF00'
|
|
|
|
print(f'<span color="{wlan}">WLAN</span>')
|