From 5fb012965f52adcca817c2c53e413b3d62559354 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 13 Jul 2025 15:04:08 -0400 Subject: [PATCH] Start volume a bit quieter and increment more slowly. --- home/stormux/.bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/stormux/.bash_profile b/home/stormux/.bash_profile index aeeb8f1..e0d2785 100644 --- a/home/stormux/.bash_profile +++ b/home/stormux/.bash_profile @@ -11,7 +11,7 @@ if [[ -f ~/.firstboot ]]; then # Wait for pipewire to become available wait=0 - volume=100 + volume=50 while [[ $wait -lt 30 ]]; do if pgrep pipewire &> /dev/null ; then wait=30 # We don't want to continue the loop @@ -25,7 +25,7 @@ if [[ -f ~/.firstboot ]]; then if read -t4 ; then break else - ((volume+=10)) + ((volume+=5)) fi pactl set-sink-volume @DEFAULT_SINK@ "${volume}%" done