You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
12 years ago
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$(which gsettings 2>/dev/null)" ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
case $1 in
|
||
|
startup)
|
||
|
gsettings set org.gnome.desktop.media-handling automount-open false
|
||
|
;;
|
||
|
cleanup)
|
||
|
gsettings reset org.gnome.desktop.media-handling automount-open
|
||
|
;;
|
||
|
esac
|