setups/sway/status.sh
Augusto Dwenger J. eab8cf8a37 feat: Add current ip_addr to the status.sh script
The script output contains know the current ip with an icon.
2021-01-07 20:10:44 +01:00

24 lines
1.1 KiB
Bash
Executable file

# The Sway configuration file in ~/.config/sway/config calls this script.
# You should see changes to the status bar after saving this script.
# If not, do "killall swaybar" and $mod+Shift+c to reload the configuration.
# Produces "21 days", for example
uptime_formatted=$(uptime | cut -d ',' -f1 | cut -d ' ' -f4,5)
# The abbreviated weekday (e.g., "Sat"), followed by the ISO-formatted date
# like 2018-10-06 and the time (e.g., 14:01)
date_formatted=$(date "+%a %F %H:%M")
# Get the Linux version but remove the "-1-ARCH" part
linux_version=$(uname -r | cut -d '-' -f1)
# Returns the battery status: "Full", "Discharging", or "Charging".
battery_status=$(cat /sys/class/power_supply/BAT0/status)
battery_percentage=$(upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep "percentage:" | tr -d '\s percentage:\s')
ip_addr=$(nmcli | grep inet4 | awk '{print $2}')
# Emojis and characters for the status bar
# 💎 💻 💡 🔌 ⚡ 📁 \|
echo "💻 $ip_addr 💡 $uptime_formatted$linux_version 🐧 $battery_percentage ($battery_status)🔋 $date_formatted"