Update configs
This commit is contained in:
parent
028d3d7760
commit
ddcc044ec6
8 changed files with 30 additions and 11 deletions
|
@ -73,7 +73,7 @@ _autoinstall_file () {
|
|||
file_path=$(dirname "$2")
|
||||
mkdir -p "$file_path"
|
||||
cd "$file_path" || exit
|
||||
curl -LsSo "$2" "$1"
|
||||
curl -fsSLo "$2" "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -84,7 +84,7 @@ _autoinstall_archive () {
|
|||
file_path=$(dirname "$2")
|
||||
mkdir -p "$file_path"
|
||||
cd "$file_path" || exit
|
||||
curl -LsSo "$2" "$1"
|
||||
curl -fsSLo "$2" "$1"
|
||||
tar xaf "$2"
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ _autostart_manage_add () {
|
|||
Description=$1
|
||||
|
||||
[Service]
|
||||
ExecStart=$2
|
||||
ExecStart=/usr/bin/sh -c ". \$HOME/.config/environment && $2"
|
||||
EOF
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ mkdir -p "$base_path"
|
|||
if [ ! -f "$file_path" ]
|
||||
then
|
||||
echo "Installing file $2"
|
||||
curl -Ls -o "$file_path" "$1"
|
||||
curl -fsSL -o "$file_path" "$1"
|
||||
fi
|
||||
|
||||
# shellcheck disable=SC1090
|
||||
|
|
|
@ -42,8 +42,8 @@ start_audio_pipewire () {
|
|||
|
||||
sleep 5
|
||||
|
||||
pw-link 'default-sink:monitor_FL' 'alsa_output.usb-BEHRINGER_UMC202HD_192k-00.analog-stereo:playback_FL'
|
||||
pw-link 'default-sink:monitor_FR' 'alsa_output.usb-BEHRINGER_UMC202HD_192k-00.analog-stereo:playback_FR'
|
||||
pw-link 'default-sink:monitor_FL' 'alsa_output.usb-BEHRINGER_UMC202HD_192k-00.HiFi__hw_U192k__sink:playback_FL'
|
||||
pw-link 'default-sink:monitor_FR' 'alsa_output.usb-BEHRINGER_UMC202HD_192k-00.HiFi__hw_U192k__sink:playback_FR'
|
||||
|
||||
pw-link 'default-sink:monitor_FL' 'alsa_output.pci-0000_00_1f.3.analog-stereo:playback_FL'
|
||||
pw-link 'default-sink:monitor_FR' 'alsa_output.pci-0000_00_1f.3.analog-stereo:playback_FR'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue