0

I've got LTSP server based on ubuntu 12.04. I need to hide or disallow or switch off the launcher on thin clients forever (not only for one time, because every session does not save any data on server, even settings)

Well, you know

Is that any possibility to make this work?

Tim
  • 32,861
  • 27
  • 118
  • 178
tregnas
  • 41
  • 1
    Not possible. This is chosen in the settings. If you want it permanently, the setting need to be stored. – Tim Nov 29 '14 at 11:37
  • @Tim I can make some changes using ltsp-chroot on server and update settings in client image – tregnas Nov 29 '14 at 12:53
  • Well change the settings, monitor the files that change and set them as "pinned", so all clients get them. – Tim Nov 29 '14 at 13:27
  • Ok, but I do not know what file should i change. I thought about gnome-session/sessions/ubuntu.session but opt/ltsp/i386 (directory where is all files of thin clients image) haven't got any session files – tregnas Nov 29 '14 at 15:29

1 Answers1

1

You could always run a command when they login?

The updated commands for hiding the Unity launcher would be:

gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode 1

And for unhiding the Unity launcher:

gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode 0

Source

Tim
  • 32,861
  • 27
  • 118
  • 178