<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Audemars02</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Audemars02"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/Audemars02"/>
	<updated>2026-04-18T18:25:15Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17895</id>
		<title>WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17895"/>
		<updated>2011-08-25T20:42:57Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WebOS3.0 Launcher Tweaks&lt;br /&gt;
&lt;br /&gt;
Included are tweaks that will Add/Rename/Reorder the Touchpad Launcher pages in webOS 3.0&lt;br /&gt;
&lt;br /&gt;
PROCEED WITH CAUTION! SEE ISSUES AT BOTTOM OF PAGE BEFORE PROCEEDING!&lt;br /&gt;
&lt;br /&gt;
== File Locations ==&lt;br /&gt;
&lt;br /&gt;
All files are located in /var/luna/preferences/launcher3/&lt;br /&gt;
&lt;br /&gt;
'''launcher_fixed.msave''' - Includes details on the Launcher Page Listing.&lt;br /&gt;
&lt;br /&gt;
'''page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}''' - Each launcher page has a file like this, with &amp;quot;APPS&amp;quot; changed to the launcher page name and the seemingly random long string of characters different per page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Rename a Page ==&lt;br /&gt;
&lt;br /&gt;
# Go into the &amp;quot;page_ReorderablePage_...&amp;quot; file&lt;br /&gt;
# In the [header] section, you will find a row labeled &amp;quot;pagename=&amp;quot;&lt;br /&gt;
# Change the &amp;quot;pagename&amp;quot; to the name you want.&lt;br /&gt;
# Reboot your Touchpad.&lt;br /&gt;
# Interestingly, if you change the name of &amp;quot;APPS&amp;quot; to &amp;quot;NEW&amp;quot;, a new file will be created called &amp;quot;page_ReorderablePage_NEW_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&amp;quot; with the same PageID&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Reorder the tabs: ==&lt;br /&gt;
&lt;br /&gt;
* Go to the &amp;quot; launcher_fixed.msave&amp;quot; file&lt;br /&gt;
* To rearrange the pages, all you need to do is change the &amp;quot;pageindex&amp;quot; values of the pages.&lt;br /&gt;
* Perform a reboot and the data in same file with automatically be rearranged based on your pageindex values&lt;br /&gt;
&lt;br /&gt;
SAMPLE CODE:&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 num_pages=4&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 '''1\pageindex=0'''&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 '''2\pageindex=1'''&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 '''3\pageindex=2'''&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 '''4\pageindex=3'''&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 size=4&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Add Launcher Tabs: ==&lt;br /&gt;
&lt;br /&gt;
This was a bit more difficult&lt;br /&gt;
You can either copy an existing file and edit, or you can create a new file in the directory. Here is an example of the file you should create&lt;br /&gt;
&lt;br /&gt;
* '''FILENAME''' = page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
* '''''Make sure you change the PageID listed in the filename'''''. I just took an existing ID and changed the first character&lt;br /&gt;
TEXT IN FILE:&lt;br /&gt;
 [header]&lt;br /&gt;
 pagedesignator=NEW&lt;br /&gt;
 pagename=NEW&lt;br /&gt;
 pagetype=ReorderablePage&lt;br /&gt;
 pageuid={7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 [icons]&lt;br /&gt;
 size=0&lt;br /&gt;
* Save the file. &lt;br /&gt;
* Open launcher_fixed.msave&lt;br /&gt;
* Change the &amp;quot;num_pages&amp;quot; in the [header] section to 5&lt;br /&gt;
* Change the last row of the file from &amp;quot;size=4&amp;quot; to &amp;quot;size=5&amp;quot;&lt;br /&gt;
* Copy the 3 lines of any one of the existing launcher pages and paste it where you want to add the page (in the example below, I added it at the end)&lt;br /&gt;
* Change the number at the beginning of the row to increment the pages correctly&lt;br /&gt;
* Change the &amp;quot;pageindex&amp;quot; values to order the pages correctly&lt;br /&gt;
* Change the &amp;quot;filepath&amp;quot; to the filename of the new file&lt;br /&gt;
&lt;br /&gt;
See changes to the launcher_fixed.msave file below. NEW code is in '''BOLD''', CHANGED code in ''ITALICS''&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 ''num_pages=5''&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 1\pageindex=0&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 2\pageindex=1&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 3\pageindex=2&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 4\pageindex=3&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 '''5\filepath=/var/luna/preferences/launcher3/page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}'''&lt;br /&gt;
 '''5\pageindex=4'''&lt;br /&gt;
 '''5\pagetype=ReorderablePage'''&lt;br /&gt;
 ''size=5''&lt;br /&gt;
*Perform a reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known Issues: ==&lt;br /&gt;
&lt;br /&gt;
# After apply tweaks, App Icon locations would not stick. I could physically move them from one launcher page to another, but once I reboot the device (Luna or Full restart), all apps returned to their original position&lt;br /&gt;
&lt;br /&gt;
EDIT: Apparently, I am not the only one having the apps not sticking to launcher pages issue (see http://forums.precentral.net/hp-touchpad/286614-i-am-having-2-issues-help.html ) ... so, maybe the tweaks aren't causing this, but rather a Touchpad thing.&lt;br /&gt;
EDIT #2: Actually, this is an issue in webOS 3.0 (not sure about 3.0.2). You must press the DONE button after moving apps, not just tapping elsewhere on the screen. As long as you press the DONE button, this issue should not occur.&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17891</id>
		<title>WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17891"/>
		<updated>2011-08-25T20:34:52Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WebOS3.0 Launcher Tweaks&lt;br /&gt;
&lt;br /&gt;
Included are tweaks that will Add/Rename/Reorder the Touchpad Launcher pages in webOS 3.0&lt;br /&gt;
&lt;br /&gt;
PROCEED WITH CAUTION! SEE ISSUES AT BOTTOM OF PAGE BEFORE PROCEEDING!&lt;br /&gt;
&lt;br /&gt;
== File Locations ==&lt;br /&gt;
&lt;br /&gt;
All files are located in /var/luna/preferences/launcher3/&lt;br /&gt;
&lt;br /&gt;
'''launcher_fixed.msave''' - Includes details on the Launcher Page Listing.&lt;br /&gt;
&lt;br /&gt;
'''page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}''' - Each launcher page has a file like this, with &amp;quot;APPS&amp;quot; changed to the launcher page name and the seemingly random long string of characters different per page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Rename a Page ==&lt;br /&gt;
&lt;br /&gt;
# Go into the &amp;quot;page_ReorderablePage_...&amp;quot; file&lt;br /&gt;
# In the [header] section, you will find a row labeled &amp;quot;pagename=&amp;quot;&lt;br /&gt;
# Change the &amp;quot;pagename&amp;quot; to the name you want.&lt;br /&gt;
# Reboot your Touchpad.&lt;br /&gt;
# Interestingly, if you change the name of &amp;quot;APPS&amp;quot; to &amp;quot;NEW&amp;quot;, a new file will be created called &amp;quot;page_ReorderablePage_NEW_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&amp;quot; with the same PageID&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Reorder the tabs: ==&lt;br /&gt;
&lt;br /&gt;
* Go to the &amp;quot; launcher_fixed.msave&amp;quot; file&lt;br /&gt;
* To rearrange the pages, all you need to do is change the &amp;quot;pageindex&amp;quot; values of the pages.&lt;br /&gt;
* Perform a reboot and the data in same file with automatically be rearranged based on your pageindex values&lt;br /&gt;
&lt;br /&gt;
SAMPLE CODE:&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 num_pages=4&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 '''1\pageindex=0'''&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 '''2\pageindex=1'''&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 '''3\pageindex=2'''&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 '''4\pageindex=3'''&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 size=4&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Add Launcher Tabs: ==&lt;br /&gt;
&lt;br /&gt;
This was a bit more difficult&lt;br /&gt;
You can either copy an existing file and edit, or you can create a new file in the directory. Here is an example of the file you should create&lt;br /&gt;
&lt;br /&gt;
* '''FILENAME''' = page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
* '''''Make sure you change the PageID listed in the filename'''''. I just took an existing ID and changed the first character&lt;br /&gt;
TEXT IN FILE:&lt;br /&gt;
 [header]&lt;br /&gt;
 pagedesignator=NEW&lt;br /&gt;
 pagename=NEW&lt;br /&gt;
 pagetype=ReorderablePage&lt;br /&gt;
 pageuid={7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 [icons]&lt;br /&gt;
 size=0&lt;br /&gt;
* Save the file. &lt;br /&gt;
* Open launcher_fixed.msave&lt;br /&gt;
* Change the &amp;quot;num_pages&amp;quot; in the [header] section to 5&lt;br /&gt;
* Change the last row of the file from &amp;quot;size=4&amp;quot; to &amp;quot;size=5&amp;quot;&lt;br /&gt;
* Copy the 3 lines of any one of the existing launcher pages and paste it where you want to add the page (in the example below, I added it at the end)&lt;br /&gt;
* Change the number at the beginning of the row to increment the pages correctly&lt;br /&gt;
* Change the &amp;quot;pageindex&amp;quot; values to order the pages correctly&lt;br /&gt;
* Change the &amp;quot;filepath&amp;quot; to the filename of the new file&lt;br /&gt;
&lt;br /&gt;
See changes to the launcher_fixed.msave file below. NEW code is in '''BOLD''', CHANGED code in ''ITALICS''&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 ''num_pages=4''&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 1\pageindex=0&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 2\pageindex=1&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 3\pageindex=2&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 4\pageindex=3&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 '''5\filepath=/var/luna/preferences/launcher3/page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}'''&lt;br /&gt;
 '''5\pageindex=4'''&lt;br /&gt;
 '''5\pagetype=ReorderablePage'''&lt;br /&gt;
 ''size=5''&lt;br /&gt;
*Perform a reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known Issues: ==&lt;br /&gt;
&lt;br /&gt;
# After apply tweaks, App Icon locations would not stick. I could physically move them from one launcher page to another, but once I reboot the device (Luna or Full restart), all apps returned to their original position&lt;br /&gt;
&lt;br /&gt;
EDIT: Apparently, I am not the only one having the apps not sticking to launcher pages issue (see http://forums.precentral.net/hp-touchpad/286614-i-am-having-2-issues-help.html ) ... so, maybe the tweaks aren't causing this, but rather a Touchpad thing.&lt;br /&gt;
EDIT #2: Actually, this is an issue in webOS 3.0 (not sure about 3.0.2). You must press the DONE button after moving apps, not just tapping elsewhere on the screen. As long as you press the DONE button, this issue should not occur.&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Talk:WebOS3.0_Launcher_Tweaks&amp;diff=17101</id>
		<title>Talk:WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Talk:WebOS3.0_Launcher_Tweaks&amp;diff=17101"/>
		<updated>2011-07-05T21:09:14Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Those IDs look like UUIDs, which have a defined format. Is it possible it doesn't work because you changed one of the letters rather than generating a new UID? or was that attempted as well?&lt;br /&gt;
&lt;br /&gt;
[[User:Pigsflew|Pigsflew]] 20:27, 5 July 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
Upon rereading the page, it looks like you weren't aware of UUID/GUIDs. Those are &amp;quot;Universally Unique Identifiers&amp;quot; (or Globally). The use of them basically ensures that the tabs wouldn't get confused, even if you had a hundred that had the same name. For technical info about the standard, see [http://en.wikipedia.org/wiki/GUID Wikipedia's page]. To generate your own, [http://www.famkruithof.net/uuid/uuidgen here] is a quick UUID generator.&lt;br /&gt;
&lt;br /&gt;
[[User:Pigsflew|Pigsflew]] 20:33, 5 July 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
Right...that is why i said to change that identifer for a new tab. either way, since these different from device-to-device, i dont know how you would write a patch since the filenames will never be the same&lt;br /&gt;
&lt;br /&gt;
--[[User:Audemars02|Audemars02]] 21:08, 5 July 2011 (UTC)&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Talk:WebOS3.0_Launcher_Tweaks&amp;diff=17099</id>
		<title>Talk:WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Talk:WebOS3.0_Launcher_Tweaks&amp;diff=17099"/>
		<updated>2011-07-05T21:08:46Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Those IDs look like UUIDs, which have a defined format. Is it possible it doesn't work because you changed one of the letters rather than generating a new UID? or was that attempted as well?&lt;br /&gt;
&lt;br /&gt;
[[User:Pigsflew|Pigsflew]] 20:27, 5 July 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
Upon rereading the page, it looks like you weren't aware of UUID/GUIDs. Those are &amp;quot;Universally Unique Identifiers&amp;quot; (or Globally). The use of them basically ensures that the tabs wouldn't get confused, even if you had a hundred that had the same name. For technical info about the standard, see [http://en.wikipedia.org/wiki/GUID Wikipedia's page]. To generate your own, [http://www.famkruithof.net/uuid/uuidgen here] is a quick UUID generator.&lt;br /&gt;
&lt;br /&gt;
[[User:Pigsflew|Pigsflew]] 20:33, 5 July 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
Right...that is why i said to change that identifer for a new tab. either way, since these differ from device-to-device, i dont know how you would write a patch since the filenames will never be the same&lt;br /&gt;
&lt;br /&gt;
--[[User:Audemars02|Audemars02]] 21:08, 5 July 2011 (UTC)&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17093</id>
		<title>WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17093"/>
		<updated>2011-07-05T20:16:18Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WebOS3.0 Launcher Tweaks&lt;br /&gt;
&lt;br /&gt;
Included are tweaks that will Add/Rename/Reorder the Touchpad Launcher pages in webOS 3.0&lt;br /&gt;
&lt;br /&gt;
PROCEED WITH CAUTION! SEE ISSUES AT BOTTOM OF PAGE BEFORE PROCEEDING!&lt;br /&gt;
&lt;br /&gt;
== File Locations ==&lt;br /&gt;
&lt;br /&gt;
All files are located in /var/luna/preferences/launcher3/&lt;br /&gt;
&lt;br /&gt;
'''launcher_fixed.msave''' - Includes details on the Launcher Page Listing.&lt;br /&gt;
&lt;br /&gt;
'''page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}''' - Each launcher page has a file like this, with &amp;quot;APPS&amp;quot; changed to the launcher page name and the seemingly random long string of characters different per page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Rename a Page ==&lt;br /&gt;
&lt;br /&gt;
# Go into the &amp;quot;page_ReorderablePage_...&amp;quot; file&lt;br /&gt;
# In the [header] section, you will find a row labeled &amp;quot;pagename=&amp;quot;&lt;br /&gt;
# Change the &amp;quot;pagename&amp;quot; to the name you want.&lt;br /&gt;
# Reboot your Touchpad.&lt;br /&gt;
# Interestingly, if you change the name of &amp;quot;APPS&amp;quot; to &amp;quot;NEW&amp;quot;, a new file will be created called &amp;quot;page_ReorderablePage_NEW_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&amp;quot; with the same PageID&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Reorder the tabs: ==&lt;br /&gt;
&lt;br /&gt;
* Go to the &amp;quot; launcher_fixed.msave&amp;quot; file&lt;br /&gt;
* To rearrange the pages, all you need to do is change the &amp;quot;pageindex&amp;quot; values of the pages.&lt;br /&gt;
* Perform a reboot and the data in same file with automatically be rearranged based on your pageindex values&lt;br /&gt;
&lt;br /&gt;
SAMPLE CODE:&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 num_pages=4&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 '''1\pageindex=0'''&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 '''2\pageindex=1'''&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 '''3\pageindex=2'''&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 '''4\pageindex=3'''&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 size=4&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Add Launcher Tabs: ==&lt;br /&gt;
&lt;br /&gt;
This was a bit more difficult&lt;br /&gt;
You can either copy an existing file and edit, or you can create a new file in the directory. Here is an example of the file you should create&lt;br /&gt;
&lt;br /&gt;
* '''FILENAME''' = page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
* '''''Make sure you change the PageID listed in the filename'''''. I just took an existing ID and changed the first character&lt;br /&gt;
TEXT IN FILE:&lt;br /&gt;
 [header]&lt;br /&gt;
 pagedesignator=NEW&lt;br /&gt;
 pagename=NEW&lt;br /&gt;
 pagetype=ReorderablePage&lt;br /&gt;
 pageuid={7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 [icons]&lt;br /&gt;
 size=0&lt;br /&gt;
* Save the file. &lt;br /&gt;
* Open launcher_fixed.msave&lt;br /&gt;
* Change the &amp;quot;num_pages&amp;quot; in the [header] section to 5&lt;br /&gt;
* Change the last row of the file from &amp;quot;size=4&amp;quot; to &amp;quot;size=5&amp;quot;&lt;br /&gt;
* Copy the 3 lines of any one of the existing launcher pages and paste it where you want to add the page (in the example below, I added it at the end)&lt;br /&gt;
* Change the number at the beginning of the row to increment the pages correctly&lt;br /&gt;
* Change the &amp;quot;pageindex&amp;quot; values to order the pages correctly&lt;br /&gt;
* Change the &amp;quot;filepath&amp;quot; to the filename of the new file&lt;br /&gt;
&lt;br /&gt;
See changes to the launcher_fixed.msave file below. NEW code is in '''BOLD''', CHANGED code in ''ITALICS''&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 ''num_pages=4''&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 1\pageindex=0&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 2\pageindex=1&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 3\pageindex=2&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 4\pageindex=3&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 '''5\filepath=/var/luna/preferences/launcher3/page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}'''&lt;br /&gt;
 '''5\pageindex=4'''&lt;br /&gt;
 '''5\pagetype=ReorderablePage'''&lt;br /&gt;
 ''size=5''&lt;br /&gt;
*Perform a reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known Issues: ==&lt;br /&gt;
&lt;br /&gt;
# After apply tweaks, App Icon locations would not stick. I could physically move them from one launcher page to another, but once I reboot the device (Luna or Full restart), all apps returned to their original position&lt;br /&gt;
&lt;br /&gt;
EDIT: Apparently, I am not the only one having the apps not sticking to launcher pages issue (see http://forums.precentral.net/hp-touchpad/286614-i-am-having-2-issues-help.html ) ... so, maybe the tweaks aren't causing this, but rather a Touchpad thing.&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17091</id>
		<title>WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17091"/>
		<updated>2011-07-05T19:46:41Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WebOS3.0 Launcher Tweaks&lt;br /&gt;
&lt;br /&gt;
Included are tweaks that will Add/Rename/Reorder the Touchpad Launcher pages in webOS 3.0&lt;br /&gt;
&lt;br /&gt;
PROCEED WITH CAUTION! SEE ISSUES AT BOTTOM OF PAGE BEFORE PROCEEDING!&lt;br /&gt;
&lt;br /&gt;
== File Locations ==&lt;br /&gt;
&lt;br /&gt;
All files are located in /var/luna/preferences/launcher3/&lt;br /&gt;
&lt;br /&gt;
'''launcher_fixed.msave''' - Includes details on the Launcher Page Listing.&lt;br /&gt;
&lt;br /&gt;
'''page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}''' - Each launcher page has a file like this, with &amp;quot;APPS&amp;quot; changed to the launcher page name and the seemingly random long string of characters different per page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Rename a Page ==&lt;br /&gt;
&lt;br /&gt;
# Go into the &amp;quot;page_ReorderablePage_...&amp;quot; file&lt;br /&gt;
# In the [header] section, you will find a row labeled &amp;quot;pagename=&amp;quot;&lt;br /&gt;
# Change the &amp;quot;pagename&amp;quot; to the name you want.&lt;br /&gt;
# Reboot your Touchpad.&lt;br /&gt;
# Interestingly, if you change the name of &amp;quot;APPS&amp;quot; to &amp;quot;NEW&amp;quot;, a new file will be created called &amp;quot;page_ReorderablePage_NEW_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&amp;quot; with the same PageID&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Reorder the tabs: ==&lt;br /&gt;
&lt;br /&gt;
* Go to the &amp;quot; launcher_fixed.msave&amp;quot; file&lt;br /&gt;
* To rearrange the pages, all you need to do is change the &amp;quot;pageindex&amp;quot; values of the pages.&lt;br /&gt;
* Perform a reboot and the data in same file with automatically be rearranged based on your pageindex values&lt;br /&gt;
&lt;br /&gt;
SAMPLE CODE:&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 num_pages=4&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 '''1\pageindex=0'''&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 '''2\pageindex=1'''&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 '''3\pageindex=2'''&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 '''4\pageindex=3'''&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 size=4&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Add Launcher Tabs: ==&lt;br /&gt;
&lt;br /&gt;
This was a bit more difficult&lt;br /&gt;
You can either copy an existing file and edit, or you can create a new file in the directory. Here is an example of the file you should create&lt;br /&gt;
&lt;br /&gt;
* '''FILENAME''' = page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
* '''''Make sure you change the PageID listed in the filename'''''. I just took an existing ID and changed the first character&lt;br /&gt;
TEXT IN FILE:&lt;br /&gt;
 [header]&lt;br /&gt;
 pagedesignator=NEW&lt;br /&gt;
 pagename=NEW&lt;br /&gt;
 pagetype=ReorderablePage&lt;br /&gt;
 pageuid={7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 [icons]&lt;br /&gt;
 size=0&lt;br /&gt;
* Save the file. &lt;br /&gt;
* Open launcher_fixed.msave&lt;br /&gt;
* Change the &amp;quot;num_pages&amp;quot; in the [header] section to 5&lt;br /&gt;
* Change the last row of the file from &amp;quot;size=4&amp;quot; to &amp;quot;size=5&amp;quot;&lt;br /&gt;
* Copy the 3 lines of any one of the existing launcher pages and paste it where you want to add the page (in the example below, I added it at the end)&lt;br /&gt;
* Change the number at the beginning of the row to increment the pages correctly&lt;br /&gt;
* Change the &amp;quot;pageindex&amp;quot; values to order the pages correctly&lt;br /&gt;
* Change the &amp;quot;filepath&amp;quot; to the filename of the new file&lt;br /&gt;
&lt;br /&gt;
See changes to the launcher_fixed.msave file below. NEW code is in '''BOLD''', CHANGED code in ''ITALICS''&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 ''num_pages=4''&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 1\pageindex=0&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 2\pageindex=1&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 3\pageindex=2&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 4\pageindex=3&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 '''5\filepath=/var/luna/preferences/launcher3/page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}'''&lt;br /&gt;
 '''5\pageindex=4'''&lt;br /&gt;
 '''5\pagetype=ReorderablePage'''&lt;br /&gt;
 ''size=5''&lt;br /&gt;
*Perform a reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known Issues: ==&lt;br /&gt;
&lt;br /&gt;
# After apply tweaks, App Icon locations would not stick. I could physically move them from one launcher page to another, but once I reboot the device (Luna or Full restart), all apps returned to their original position&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17085</id>
		<title>WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17085"/>
		<updated>2011-07-05T16:57:31Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: Replaced content with &amp;quot;COMING SOON&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;COMING SOON&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17083</id>
		<title>WebOS3.0 Launcher Tweaks</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS3.0_Launcher_Tweaks&amp;diff=17083"/>
		<updated>2011-07-05T16:42:12Z</updated>

		<summary type="html">&lt;p&gt;Audemars02: Included are the start of some tweaks that will Add/Rename/Reorder the Touchpad Launcher pages in webOS 3.0&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WebOS3.0 Launcher Tweaks&lt;br /&gt;
&lt;br /&gt;
Included are tweaks that will Add/Rename/Reorder the Touchpad Launcher pages in webOS 3.0&lt;br /&gt;
&lt;br /&gt;
PROCEED WITH CAUTION! SEE ISSUES AT BOTTOM OF PAGE BEFORE PROCEEDING!&lt;br /&gt;
&lt;br /&gt;
== File Locations ==&lt;br /&gt;
&lt;br /&gt;
All files are located in /var/luna/preferences/launcher3/&lt;br /&gt;
&lt;br /&gt;
'''launcher_fixed.msave''' - Includes details on the Launcher Page Listing.&lt;br /&gt;
&lt;br /&gt;
'''page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}''' - Each launcher page has a file like this, with &amp;quot;APPS&amp;quot; changed to the launcher page name and the seemingly random long string of characters different per page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Rename a Page ==&lt;br /&gt;
&lt;br /&gt;
# Go into the &amp;quot;page_ReorderablePage_...&amp;quot; file&lt;br /&gt;
# In the [header] section, you will find a row labeled &amp;quot;pagename=&amp;quot;&lt;br /&gt;
# Change the &amp;quot;pagename&amp;quot; to the name you want.&lt;br /&gt;
# Reboot your Touchpad.&lt;br /&gt;
# Interestingly, if you change the name of &amp;quot;APPS&amp;quot; to &amp;quot;NEW&amp;quot;, a new file will be created called &amp;quot;page_ReorderablePage_NEW_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&amp;quot; with the same PageID&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Reorder the tabs: ==&lt;br /&gt;
&lt;br /&gt;
* Go to the &amp;quot; launcher_fixed.msave&amp;quot; file&lt;br /&gt;
* To rearrange the pages, all you need to do is change the &amp;quot;pageindex&amp;quot; values of the pages.&lt;br /&gt;
* Perform a reboot and the data in same file with automatically be rearranged based on your pageindex values&lt;br /&gt;
&lt;br /&gt;
SAMPLE CODE:&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 num_pages=4&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 '''1\pageindex=0'''&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 '''2\pageindex=1'''&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 '''3\pageindex=2'''&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 '''4\pageindex=3'''&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 size=4&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To Add Launcher Tabs: ==&lt;br /&gt;
&lt;br /&gt;
This was a bit more difficult&lt;br /&gt;
You can either copy an existing file and edit, or you can create a new file in the directory. Here is an example of the file you should create&lt;br /&gt;
&lt;br /&gt;
* '''FILENAME''' = page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
* '''''Make sure you change the PageID listed in the filename'''''. I just took an existing ID and changed the first character&lt;br /&gt;
TEXT IN FILE:&lt;br /&gt;
 [header]&lt;br /&gt;
 pagedesignator=NEW&lt;br /&gt;
 pagename=NEW&lt;br /&gt;
 pagetype=ReorderablePage&lt;br /&gt;
 pageuid={7b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 [icons]&lt;br /&gt;
 size=0&lt;br /&gt;
* Save the file. &lt;br /&gt;
* Open launcher_fixed.msave&lt;br /&gt;
* Change the &amp;quot;num_pages&amp;quot; in the [header] section to 5&lt;br /&gt;
* Change the last row of the file from &amp;quot;size=4&amp;quot; to &amp;quot;size=5&amp;quot;&lt;br /&gt;
* Copy the 3 lines of any one of the existing launcher pages and paste it where you want to add the page (in the example below, I added it at the end)&lt;br /&gt;
* Change the number at the beginning of the row to increment the pages correctly&lt;br /&gt;
* Change the &amp;quot;pageindex&amp;quot; values to order the pages correctly&lt;br /&gt;
* Change the &amp;quot;filepath&amp;quot; to the filename of the new file&lt;br /&gt;
&lt;br /&gt;
See changes to the launcher_fixed.msave file below. NEW code is in '''BOLD''', CHANGED code in ''ITALICS''&lt;br /&gt;
 [General]&lt;br /&gt;
 nul=0&lt;br /&gt;
 [header]&lt;br /&gt;
 ''num_pages=4''&lt;br /&gt;
 save_sys_version=7&lt;br /&gt;
 simple_name=default&lt;br /&gt;
 time_created=1309879687727&lt;br /&gt;
 [pages]&lt;br /&gt;
 1\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_APPS_{6b63679a-9ce6-449b-892f-6b684d9b03c6}&lt;br /&gt;
 1\pageindex=0&lt;br /&gt;
 1\pagetype=ReorderablePage&lt;br /&gt;
 2\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_DOWNLOADS_{21227633-7ee8-43df-8679-07a13d72fc7b}&lt;br /&gt;
 2\pageindex=1&lt;br /&gt;
 2\pagetype=ReorderablePage&lt;br /&gt;
 3\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_FAVORITES_{0a8f06aa-0b35-4f93-8380-5f9b712e5474}&lt;br /&gt;
 3\pageindex=2&lt;br /&gt;
 3\pagetype=ReorderablePage&lt;br /&gt;
 4\filepath=/var/luna/preferences/launcher3//page_ReorderablePage_SETTINGS_{fd41ac63-451f-4924-ad64-ae8770ee14b9}&lt;br /&gt;
 4\pageindex=3&lt;br /&gt;
 4\pagetype=ReorderablePage&lt;br /&gt;
 '''5\filepath=/var/luna/preferences/launcher3/page_ReorderablePage_NEW_{7b63679a-9ce6-449b-892f-6b684d9b03c6}'''&lt;br /&gt;
 '''5\pageindex=4'''&lt;br /&gt;
 '''5\pagetype=ReorderablePage'''&lt;br /&gt;
 ''size=5''&lt;br /&gt;
*Perform a reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known Issues: ==&lt;br /&gt;
&lt;br /&gt;
# After apply tweaks, App Icon locations would not stick. I could physically move them from one launcher page to another, but once I reboot the device (Luna or Full restart), all apps returned to their original position&lt;/div&gt;</summary>
		<author><name>Audemars02</name></author>
	</entry>
</feed>