adi1090x / polybar-themes

A huge collection of polybar themes with different styles, colors and variants.
GNU General Public License v3.0
5.59k stars 407 forks source link

I found some wierd Chinese chars #196

Open kraemrz opened 1 year ago

kraemrz commented 1 year ago

This is from simple/hack/scripts/check-network I don't believe these Chinese symbols should be there.

!/usr/bin/env bash

count=0 connected="說" disconnected="ﲁ"

ID="$(ip link | awk '/state UP/ {print $2}')"

while true; do if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then if [[ $ID == e* ]]; then echo "$connected Online" ; sleep 25 else echo "$connected Online" ; sleep 25 fi else echo "$disconnected Offline" ; sleep 5 fi done