dotfiles/.config/sway/sway-status
2024-12-16 11:39:11 +07:00

13 lines
296 B
Bash
Executable File

#!/usr/bin/env bash
# Volume
volume=$(amixer get Capture | grep -m1 % | awk '{print $5}' | sed -e 's/\[//' -e 's/\]//')
# Battery
battery=$(cat /sys/class/power_supply/macsmc-battery/capacity)
# Date and Time
date=$(date +'%X %a, %d %b %y')
echo "Vol" $volume "|" "Bat" $battery"%" "|" $date