1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-25 12:37:46 +01:00

statusbar/sxhkd: updated player interface and cleaned up

This commit is contained in:
tiyn 2024-03-09 02:48:17 +01:00
parent 60a947a8a2
commit f862b777ec
9 changed files with 127 additions and 20 deletions

View File

@ -11,11 +11,15 @@ super + r
dmenu_run -F -i -c -l 20
super + a
playerctl previous
lmc previous
super + s
playerctl play-pause
lmc playpause
super + d
playerctl next
lmc next
super + c
lmc loop
super + x
lmc shuffle
super + f
$TERMINAL -e $FILE

View File

@ -2,8 +2,6 @@
model=$(cat /proc/cpuinfo | grep "model name" | head -n1)
icon="^b#282828^^c#dfdfdf^  ^d^"
if printf "$model " | grep -Fqe "AMD"; then
temp=$(sensors | awk '/Tctl/ {print $2}')
else
@ -12,4 +10,14 @@ fi
temp=$(printf %3s $(echo ${temp##*+} | sed "s/\..*//") | tr ' ' ' ')
echo "$icon $temp°C"
if [ $temp -gt 100 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
elif [ $temp -gt 80 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
else
icon="^b#282828^^c#dfdfdf^  ^d^"
fi
echo "$icon"

View File

@ -3,9 +3,21 @@
# Status bar module for disk space
# $1 should be drive mountpoint
disk="/"
disk="/home"
[ ! -z "$1" ] && disk="$1"
icon="$disk"
printf "^b#282828^^c#dfdfdf^ 󰗮 ^d^ %s\n" "$(df -h "$disk" | awk ' /[0-9]/ {print $3 "/" $2}')"
free=$(df "$disk" | awk ' /[0-9][0-9]/ {print $4}')
if [ $free -gt 104857600 ]
then
icon="^b#282828^^c#dfdfdf^ 󰗮 ^d^"
elif [ $free -gt 52428800 ]
then
icon="^b#282828^^c#ffff00^ 󰗮 ^d^"
else
icon="^b#282828^^c#ff0000^ 󰗮 ^d^"
fi
printf "$icon %s"

View File

@ -1,6 +1,6 @@
#!/bin/sh
icon="^b#282828^^c#dfdfdf^ ^d^"
icon="^b#282828^^c#dfdfdf^ ^d^"
temp=""
@ -12,4 +12,14 @@ else
return
fi
echo "$icon $temp°C"
if [ $temp -gt 100 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
elif [ $temp -gt 80 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
else
icon="^b#282828^^c#dfdfdf^  ^d^"
fi
echo "$icon"

View File

@ -2,9 +2,24 @@
wifipercent=" 0"
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#ff0000^ ^d^"
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#ff0000^ ^d^" && wifistatus="down"
[ ! -n "${wifiicon+var}" ] && wifiicon="^c#dfdfdf^ ^d^" && wifipercent=$(grep "^\s*w" /proc/net/wireless | awk '{ print int($3 * 100 / 70) }')
[ ! -n "${wifiicon+var}" ] && wifistatus="up" && wifipercent=$(grep "^\s*w" /proc/net/wireless | awk '{ print int($3 * 100 / 70) }')
wifipercent=$(printf %3s $wifipercent | tr ' ' ' ')
echo "$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^  /;s/up/^b#282828^^c#dfdfdf^ 󰈀 /")" "$wifiicon" "$wifipercent%"
if [ $wifistatus = "up" ]
then
if [ $wifipercent -gt 75 ]
then
wifiicon="^b#282828^^c#dfdfdf^  ^d^"
elif [ $wifipercent -gt 40 ]
then
wifiicon="^b#282828^^c#ffff00^  ^d^"
else
wifiicon="^b#282828^^c#ff0000^  ^d^"
fi
fi
echo "$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^  ^d^/;s/up/^b#282828^^c#dfdfdf^ 󰈀 ^d^/")" "$wifiicon"

View File

@ -2,5 +2,16 @@
icon="^b#282828^^c#dfdfdf^  ^d^ "
total=$(free -h | awk '/^Mem:/ {print $3/$2}')
percent=$(printf %3s $(printf %-4s $total | tr ' ' '0' | cut -c1-4 | sed -e 's/\.//g' | sed -e 's/^0//g') | tr ' ' ' ')%
echo "$icon$percent"
percent=$(printf %3s $(printf %-4s $total | tr ' ' '0' | cut -c1-4 | sed -e 's/\.//g' | sed -e 's/^0//g') | tr ' ' ' ')
if [ $percent -gt 75 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
elif [ $percent -gt 50 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
else
icon="^b#282828^^c#dfdfdf^  ^d^"
fi
echo "$icon"

38
.local/bin/etc/statusbar/player Executable file
View File

@ -0,0 +1,38 @@
#!/bin/sh
playerctlstatus=$(playerctl status 2> /dev/null)
track="$(playerctl metadata "xesam:artist") - $(playerctl metadata "xesam:title")"
track=$(echo "$track" | cut -c1-40)
loop=$(playerctl loop)
shuffle=$(playerctl shuffle)
if [ "$loop" = "Playlist" ]
then
loop_icon="^b#282828^^c#dfdfdf^  ^d^"
elif [ "$loop" = "Track" ]
then
loop_icon="^b#282828^^c#dfdfdf^  ^d^"
elif [ "$loop" = "None" ]
then
loop_icon="^b#282828^^c#dfdfdf^  ^d^"
fi
if [ "$shuffle" = "Off" ]
then
shuffle_icon="^b#282828^^c#dfdfdf^  ^d^"
elif [ "$shuffle" = "On" ]
then
shuffle_icon="^b#282828^^c#dfdfdf^  ^d^"
fi
if [ "$playerctlstatus" = "" ]
then
echo ""
elif [ "$playerctlstatus" = "Playing" ]
then
echo "$track ^b#282828^^c#dfdfdf^ ▶️ ^d^ $loop_icon $shuffle_icon"
elif [ "$playerctlstatus" = "Paused" ]
then
echo "^b#282828^^c#dfdfdf^  ^d^ $loop_icon $shuffle_icon"
fi

View File

@ -3,19 +3,19 @@
vol="$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2}' | sed -e 's/\.//g' | sed 's/^0*//')"
if [ "$vol" -eq "0" ]; then
vol_info="^c#dfdfdf^ ^d^"
vol_info="^b#282828^^c#dfdfdf^  ^d^"
elif [ "$vol" -gt "70" ]; then
vol_info="^c#dfdfdf^ ^d^"
vol_info="^b#282828^^c#dfdfdf^  ^d^"
else
vol_info="^c#dfdfdf^ ^d^"
vol_info="^b#282828^^c#dfdfdf^  ^d^"
fi
$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -q '\[MUTED\]') && vol_info="^c#ff0000^ ^d^"
if wpctl get-volume @DEFAULT_SOURCE@ | grep -q '\[MUTED\]'; then
mic="^b#282828^^c#ff0000^  "
mic="^b#282828^^c#ff0000^  ^d^"
else
mic="^b#282828^^c#dfdfdf^  "
mic="^b#282828^^c#dfdfdf^  ^d^"
fi
vol=$(printf %3s $vol | tr ' ' ' ')

View File

@ -12,6 +12,11 @@ case "$1" in
undeaf) wpctl set-mute @DEFAULT_SINK@ 0;;
mute) wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 1;;
unmute) wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 0;;
previous) playerctl previous;;
playpause) playerctl play-pause;;
next) playerctl next;;
shuffle) playerctl shuffle toggle;;
loop) playerctl loop none;;
*) cat << EOF
lmc: cli music interface for pulse for those with divine intellect too
grand to remember the pamixer commands.
@ -23,8 +28,12 @@ Allowed options:
unmute unmute microphone
deaf deaf sound
undeaf undeaf sound
previous play previous song in player
playpause toggle play or pause in player
next play next song in player
all else Print this message
EOF
esac
pkill -RTMIN+4 $STATUSBAR
sleep 1 && pkill -RTMIN+9 $STATUSBAR