chown later

This commit is contained in:
Bob Mottram 2016-07-30 20:58:39 +01:00
parent 49b26897d9
commit aec793a6f3
2 changed files with 4 additions and 3 deletions

View File

@ -586,7 +586,6 @@ function mesh_client_startup_applications {
echo 'dconf write /org/mate/desktop/media-handling/automount-open false' >> $START_DESKTOP
echo 'dconf write /org/mate/desktop/screensaver/lock-enabled false' >> $START_DESKTOP
chmod +x $START_DESKTOP
chroot "$rootdir" chown $MY_USERNAME:$MY_USERNAME $START_DESKTOP
START_DESKTOP2=$rootdir/home/$MY_USERNAME/.config/autostart/mesh-start.desktop
echo '[Desktop Entry]' > $START_DESKTOP2
@ -595,7 +594,6 @@ function mesh_client_startup_applications {
echo "Exec=bash -c '~/mesh-desktop.sh'" >> $START_DESKTOP2
echo 'X-GNOME-Autostart-enabled=true' >> $START_DESKTOP2
chmod +x $START_DESKTOP2
chroot "$rootdir" chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.config
}
function mesh_desktop_icons {

View File

@ -507,8 +507,11 @@ function show_desktop_icons {
echo 'Terminal=false' >> /home/$MY_USERNAME/Desktop/new_identity.desktop
echo 'Categories=Application;' >> /home/$MY_USERNAME/Desktop/new_identity.desktop
chmod +x /home/$MY_USERNAME/Desktop/*
# set permissions
chmod +x /home/${MY_USERNAME}/Desktop/*
chown ${MY_USERNAME}:${MY_USERNAME} /home/$MY_USERNAME/Desktop/*
chown -R ${MY_USERNAME}:${MY_USERNAME} /home/$MY_USERNAME/.config
chown ${MY_USERNAME}:${MY_USERNAME} /home/$MY_USERNAME/*.sh
}
function disable_password_logins {