Adding a conky

This commit is contained in:
Derek Taylor
2023-08-31 18:14:26 -05:00
parent cf12132648
commit ef6f204591
17 changed files with 1061 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/bash
# A simple script to display wifi name
# 'ssid -i' = with icon, 'ssid' = text only
# Cheers!
# Addy
SSID_NAME=$(/sbin/iwgetid -r)
if [[ "${SSID_NAME}" != "" ]]; then
if [[ $1 = "-i" ]]; then
echo " ${SSID_NAME}"
else
echo "${SSID_NAME}"
fi
else
echo "Not Connected"
fi
exit