Merge branch 'dracula:master' into master

This commit is contained in:
AbelAnaya 2023-11-07 19:09:57 +01:00 committed by GitHub
commit e8b07bedf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -55,6 +55,8 @@ main()
left_icon="#S";; left_icon="#S";;
window) window)
left_icon="#W";; left_icon="#W";;
hostname)
left_icon="#H";;
*) *)
left_icon=$show_left_icon;; left_icon=$show_left_icon;;
esac esac

View file

@ -18,8 +18,8 @@ get_ssid()
;; ;;
Darwin) Darwin)
if /System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -I | grep -E ' SSID' | cut -d ':' -f 2 | sed 's/ ^*//g' &> /dev/null; then if /System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -I | grep -E ' SSID' | cut -d ':' -f 2 | sed 's/^[[:blank:]]*//g' &> /dev/null; then
echo "$(/System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -I | grep -E ' SSID' | cut -d ':' -f 2)" | sed 's/ ^*//g' echo "$(/System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -I | grep -E ' SSID' | cut -d ':' -f 2)" | sed 's/^[[:blank:]]*//g'
else else
echo 'Ethernet' echo 'Ethernet'
fi fi