Add ability to have removable storage auto mounted if udiskie is detected.
This commit is contained in:
parent
9c1ac5f7f3
commit
7ee783edeb
8
i38.sh
8
i38.sh
@ -226,6 +226,11 @@ else
|
|||||||
fileBrowser="${programList/#-/}"
|
fileBrowser="${programList/#-/}"
|
||||||
fi
|
fi
|
||||||
fileBrowser="$(command -v $fileBrowser)"
|
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
|
# Auto start with dex
|
||||||
dex=1
|
dex=1
|
||||||
if command -v dex &> /dev/null ; then
|
if command -v dex &> /dev/null ; then
|
||||||
@ -462,6 +467,9 @@ fi
|
|||||||
if [[ $brlapi -eq 0 ]]; then
|
if [[ $brlapi -eq 0 ]]; then
|
||||||
echo 'exec --no-startup-id xbrlapi --quiet'
|
echo 'exec --no-startup-id xbrlapi --quiet'
|
||||||
fi
|
fi
|
||||||
|
if [[ $udiskie -eq 0 ]]; then
|
||||||
|
echo 'exec --no-startup-id udiskie'
|
||||||
|
fi
|
||||||
if [[ -x "/usr/lib/notification-daemon-1.0/notification-daemon" ]]; then
|
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'
|
echo 'exec_always --no-startup-id /usr/lib/notification-daemon-1.0/notification-daemon -r'
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user