distribution/packages/jelos/autostart/005-volume
2023-08-06 23:29:18 +00:00

17 lines
335 B
Bash
Executable file

#!/bin/sh
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
# Minimal OS variable loading for performance
. /etc/profile.d/02-distribution
tocon "Restoring volume..."
VOLUME=$(get_setting audio.volume)
if [[ -z ${VOLUME} ]]
then
VOLUME="60"
fi
/usr/bin/volume ${VOLUME}