more changes, all should work pretty nicely now
This commit is contained in:
Executable
+10
@@ -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
|
||||
Executable
+83
@@ -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
|
||||
Reference in New Issue
Block a user