Added xsession and tmux_status files

This commit is contained in:
2020-12-24 22:00:28 -08:00
parent 2f0e1af64b
commit 7ad96623fe
2 changed files with 30 additions and 0 deletions

17
tmux_status.laptop Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# vim: filetype=sh
#while true; do
VOL=$(amixer get Master | tail -1 | sed 's/.*\[\([0-9]*%\)\].*/\1/')
LOCALTIME=$(date +"%Y %h %d %I:%M%p %Z")
IP=$(for i in `ip r`; do echo $i; done | grep -A 1 src | tail -n1)
WEATHER=$(weather fips4105192520 | grep Tempera | awk '{print $2}')
BAT=$(acpi -b | awk '{ print $4 " " $5 }' | tr -d ',')
echo "$IP  ${WEATHER}°F"
#sleep 30
#done