more changes, all should work pretty nicely now

This commit is contained in:
2025-05-21 15:45:30 +02:00
parent 0e34591f0a
commit ab93aae1b6
56 changed files with 6674 additions and 229 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
notif_id=$1
bat_alert_lvl=15
bat_lvl=$(grep "" /sys/class/power_supply/BAT0/capacity )
bat_status=$(grep Discharging /sys/class/power_supply/BAT0/status )
if (( $bat_lvl < $bat_alert_lvl )) && [ $bat_status == "Discharging" ]; then
notify-send -a low_battery -u critical "Low Battery" "Connect Power Adapter" -i battery-low -r $notif_id -t 60000
fi
+83
View File
@@ -0,0 +1,83 @@
#!/usr/bin/env bash
notify='notify-send'
muteToggleNotify() {
volume=$(pamixer --get-volume)
muted=$(pamixer --get-mute)
icon=""
if [ $muted == "true" ]; then
str="Muted"
icon="audio-volume-muted"
else
if [ $volume -eq 0 ]; then
icon="audio-volume-low"
elif [ $volume -le 30 ]; then
icon="audio-volume-medium"
elif [ $volume -le 70 ]; then
icon="audio-volume-high"
else
icon="audio-volume-muted"
fi
str="Unmuted"
fi
$notify -a volume_indicator -h string:x-canonical-private-synchronous:audio "$str" -h int:value:"$volume" -t 1500 --icon $icon
}
notifyMuted() {
volume=$(pamixer --get-volume)
muted=$(pamixer --get-mute)
$notify -a volume_indicator -h string:x-canonical-private-synchronous:audio "Muted" -h int:value:"$volume" -t 1500 --icon audio-volume-muted
}
notifyAudio() {
volume=$(pamixer --get-volume)
muted=$(pamixer --get-mute)
$muted && notifyMuted "$volume" && return
if [ $volume -eq 0 ]; then
notifyMuted "$volume"
elif [ $volume -le 30 ]; then
$notify -a volume_indicator -h string:x-canonical-private-synchronous:audio "Volume: " -h int:value:"$volume" -t 1500 --icon audio-volume-low
elif [ $volume -le 70 ]; then
$notify -a volume_indicator -h string:x-canonical-private-synchronous:audio "Volume: " -h int:value:"$volume" -t 1500 --icon audio-volume-medium
else
$notify -a volume_indicator -h string:x-canonical-private-synchronous:audio "Volume: " -h int:value:"$volume" -t 1500 --icon audio-volume-high
fi
}
notifyBrightness() {
base_brightness=$(brightnessctl g)
brightness=$(( $(( $base_brightness * 5 )) + 5 ))
if [ $brightness -eq 0 ]; then
$notify -a brightness_indicator -h string:x-canonical-private-synchronous:brightness "Brightness: " -h int:value:$brightness -t 1500 --icon display-brightness-symbolic
elif [ $brightness -le 30 ]; then
$notify -a brightness_indicator -h string:x-canonical-private-synchronous:brightness "Brightness: " -h int:value:$brightness -t 1500 --icon display-brightness-symbolic
elif [ $brightness -le 70 ]; then
$notify -a brightness_indicator -h string:x-canonical-private-synchronous:brightness "Brightness: " -h int:value:"$brightness" -t 1500 --icon display-brightness-symbolic
else
$notify -a brightness_indicator -h string:x-canonical-private-synchronous:brightness "Brightness: " -h int:value:$brightness -t 1500 --icon display-brightness-symbolic
fi
}
case "$1" in
mute)
muteToggleNotify
;;
audio)
notifyAudio
;;
brightness)
notifyBrightness
;;
*)
echo "Invalid Arguments:"
echo "$1"
exit 2
esac