My understanding is that you want to reorder where things are placed on your launcher.
Get the list of launcher
In the terminal type the following and press enter
gsettings get com.canonical.Unity.Launcher favorites
Some thing like this will be returned.
['application://google-chrome.desktop', 'application://gnome-terminal.desktop',
'application://nautilus.desktop', 'application://media1.desktop',
'unity://running-apps', 'unity://expo-icon', 'unity://devices']
Re-order the launchers
Copy this, paste in the text editor and re-organize things. Suppose I want to keep the nautilus at the top, I would do the following:
['application://nautilus.desktop', 'application://gnome-terminal.desktop',
'application://google-chrome.desktop', 'application://media1.desktop',
'unity://running-apps', 'unity://expo-icon', 'unity://devices']
Set the order
In the terminal type:
gsettings set com.canonical.Unity.Launcher favorites
['application://nautilus.desktop', 'application://gnome-terminal.desktop',
'application://google-chrome.desktop', 'application://media1.desktop',
'unity://running-apps', 'unity://expo-icon', 'unity://devices']
Refresh Unity
Press Alt + F2, type unity and press enter, this will refresh unity and the launcher.
This should set the order and should survive through reboots but I don't have 16 launchers and haven't tested them.
If this doesn't work, use the following shell script and run it after you log in:
#!/bin/bash
gsettings set com.canonical.Unity.Launcher favorites
['application://nautilus.desktop', 'application://gnome-terminal.desktop',
'application://google-chrome.desktop', 'application://media1.desktop',
'unity://running-apps', 'unity://expo-icon', 'unity://devices']
Save it in your home folder, say a.sh and make it executable by
chmod +x a.sh
Then, when you login:
Press Alt + F2, type a.sh and press enter.
I hope someone posts a cleaner solution