feat: shorten wifi and ethernet blocks

This commit is contained in:
Krzysztof Rudnicki 2024-11-16 17:16:26 +01:00
parent e59773f2e9
commit bd6250c0fe
3 changed files with 4 additions and 3 deletions

View File

@ -40,7 +40,7 @@ interval=1
color=#50FA7B
[ethernet]
command=ip -o -4 addr show enp6s0 | awk '{print " LAN: "$4}' || echo " LAN: down" #  for Ethernet
command=ip -o -4 addr show enp6s0 | awk '{print " "$4}' || echo " down" #  for Ethernet
interval=10
[wifi]

View File

@ -1,3 +1,4 @@
#!/bin/bash
# Get the current volume level and mute status

View File

@ -5,7 +5,7 @@ wifi_interface=$(iw dev | awk '$1=="Interface"{print $2}')
# If no WiFi interface is found, exit
if [ -z "$wifi_interface" ]; then
echo " WiFi: down"
echo " down"
exit 1
fi