some dynamism in iface

This commit is contained in:
aj 2019-03-22 19:35:45 +00:00
parent 755f770282
commit e5b8a1e1f0
2 changed files with 12 additions and 4 deletions

View File

@ -143,7 +143,7 @@ ws-icon-9 = 100:spotify;
[module/internalip]
type = internal/network
interface = wlp3s0
interface = ${env:IFACE:}
interval = 5
;udspeed-minwidth = 0

View File

@ -9,8 +9,16 @@ while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch bar1 and bar2
#polybar top &
for m in $(polybar --list-monitors | cut -d":" -f1); do
MONITOR=$m polybar --reload top &
done
if [[ "$(hostname)" == "andy-pc" ]]; then
for m in $(polybar --list-monitors | cut -d":" -f1); do
MONITOR=$m IFACE="eno1" polybar --reload top &
done
else
for m in $(polybar --list-monitors | cut -d":" -f1); do
MONITOR=$m IFACE="wlp3s0" polybar --reload top &
done
fi
echo "Bars launched..."