various updates on nixos,sway,scripts&dockercompose

This commit is contained in:
2025-11-08 17:04:36 +01:00
parent 7e8e812814
commit b6f93f60e4
5 changed files with 154 additions and 73 deletions

View File

@@ -5,8 +5,8 @@
uptime_formatted=$(uptime | cut -d ',' -f1 | cut -d ' ' -f4,5)
# date and time format: Tue 2025-08-19 22:37
date_formatted=$(date "+%a %F %H:%M")
temp_raw=$(cat /sys/class/thermal/thermal_zone0/temp)
temp=$(($temp_raw / 1000))
volume=$(pactl get-sink-volume @DEFAULT_SINK@ | awk '{print $5}')
muted=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
@@ -19,5 +19,16 @@ muted=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
battery_status=$(cat /sys/class/power_supply/BAT0/status) # "Full", "Discharging", or "Charging"
battery_capacity=$(cat /sys/class/power_supply/BAT0/capacity) # %
# 💎 💻 💡 🔌 ⚡ 📁 \| 🐧
echo $uptime_formatted$volume $muted 🔊 $battery_status $battery_capacity% 🔋 $date_formatted
# date and time format: Tue 2025-08-19 22:37
datetime=$(date "+%a %F %H:%M:%S")
interface=$(ip route get 8.8.8.8 | awk -F'dev ' 'NR==1{split($2,a," ");print a[1]}')
ip=$(ip addr show dev $interface | grep 'inet ' | awk '{print $2}' | cut -d'/' -f1)
avail_space=$(df -h / | awk 'NR==2 {print $4}')
# 💎 💻 💡 🔌 ⚡ 📁 \| 🐧 🔊 🔋
echo $avail_space \| $temp°C \| $uptime_formatted \| vol: $volume $muted \| $battery_status $battery_capacity% \| $interface $ip \| $datetime