change 'ln -s' to 'ln --symbolic' in bluetooth-on.sh

for readability and consistency purposes
This commit is contained in:
2023-12-28 01:13:26 +00:00
parent 4adce44c19
commit b8fbaabdf5

View File

@ -2,8 +2,8 @@
# Simple script to enable bluetooth on Void Linux (using the runit init system) # Simple script to enable bluetooth on Void Linux (using the runit init system)
echo "Attempting to create a symbolic link to the bluetoothd service in /var/service/" echo "Attempting to create a symbolic link to the bluetoothd service in /var/service/"
# sudo ln -s /etc/sv/bluetoothd /var/service/ # sudo ln --symbolic /etc/sv/bluetoothd /var/service/
doas ln -s /etc/sv/bluetoothd /var/service/ doas ln --symbolic /etc/sv/bluetoothd /var/service/
echo "Attempting to turn on bluetooth via bluetoothctl" echo "Attempting to turn on bluetooth via bluetoothctl"
bluetoothctl power on bluetoothctl power on