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.
kali-live-build/kali-config/common/includes.chroot/usr/share/debian-installer-launcher/hooks/10_nautilus

15 lines
265 B
Plaintext

#!/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