Add ability to have removable storage auto mounted if udiskie is detected.

This commit is contained in:
stormdragon2976 2023-06-07 00:15:13 -04:00
parent 9c1ac5f7f3
commit 7ee783edeb
1 changed files with 8 additions and 0 deletions

8
i38.sh
View File

@ -226,6 +226,11 @@ else
fileBrowser="${programList/#-/}"
fi
fileBrowser="$(command -v $fileBrowser)"
# Auto mount removable media
udiskie=1
if command -v udiskie &> /dev/null ; then
export udiskie=$(yesno "Would you like removable drives to automatically mount when plugged in?")
fi
# Auto start with dex
dex=1
if command -v dex &> /dev/null ; then
@ -462,6 +467,9 @@ fi
if [[ $brlapi -eq 0 ]]; then
echo 'exec --no-startup-id xbrlapi --quiet'
fi
if [[ $udiskie -eq 0 ]]; then
echo 'exec --no-startup-id udiskie'
fi
if [[ -x "/usr/lib/notification-daemon-1.0/notification-daemon" ]]; then
echo 'exec_always --no-startup-id /usr/lib/notification-daemon-1.0/notification-daemon -r'
fi