New version: created v3

This commit is contained in:
Keyitdev
2022-07-23 15:08:47 +02:00
parent eb3bdd5962
commit a2d46e7b94
551 changed files with 103679 additions and 4704 deletions
+9 -9
View File
@@ -8,23 +8,23 @@ vol_quiet=33
vol_loud=66
if [ "$cur_vol" -le "$vol_quiet" ]; then
dunstify -a "Volume" \
"Volume" \
"Current volume is $cur_vol%" \
dunstify -a "Speakers" \
"Speakers" \
"Volume: $cur_vol%" \
-r 100 \
-i $dir_icons/volume.svg
fi
if [ "$cur_vol" -gt "$vol_quiet" ] && [ "$cur_vol" -le "$vol_loud" ]; then
dunstify -a "Volume" \
"Volume" \
"Current volume is $cur_vol%" \
dunstify -a "Speakers" \
"Speakers" \
"Volume: $cur_vol%" \
-r 100 \
-i $dir_icons/volume-1.svg
fi
if [ "$cur_vol" -gt "$vol_loud" ]; then
dunstify -a "Volume" \
"Volume" \
"Current volume is $cur_vol%" \
dunstify -a "Speakers" \
"Speakers" \
"Volume: $cur_vol%" \
-r 100 \
-i $dir_icons/volume-2.svg
fi