i3pystatus: fix wifi device detection
This commit is contained in:
parent
b170187208
commit
b295fd359a
1 changed files with 16 additions and 7 deletions
|
@ -12,11 +12,20 @@ for line in check_output(['rfkill', '-rn']).decode('UTF-8').splitlines():
|
|||
'hard': True if hard == 'blocked' else False,
|
||||
}
|
||||
|
||||
if devices['phy0']['hard']:
|
||||
wlan = '#FF0000'
|
||||
elif devices['phy0']['soft']:
|
||||
wlan = '#FF9900'
|
||||
else:
|
||||
wlan = '#00FF00'
|
||||
wifi_dev = None
|
||||
for device in devices:
|
||||
if device.startswith('phy'):
|
||||
wifi_dev = device
|
||||
break
|
||||
|
||||
print(f'<span color="{wlan}">WLAN</span>')
|
||||
if not wifi_dev:
|
||||
print('No WLAN?')
|
||||
else:
|
||||
if devices[wifi_dev]['hard']:
|
||||
wlan = '#FF0000'
|
||||
elif devices[wifi_dev]['soft']:
|
||||
wlan = '#FF9900'
|
||||
else:
|
||||
wlan = '#00FF00'
|
||||
|
||||
print(f'<span color="{wlan}">WLAN</span>')
|
||||
|
|
Loading…
Reference in a new issue