This topic has been created in order to mod belle shell .qml files only. You are all welcome to discuss the modding of belle shell but only .qml files
Jonas1975 ,the admin of dailymobile forum, has given us permission to mod .qml files. See below
We will allow this topic as well the modding around the qml files since I got official confirmation by the developer that he is ok with that.
Anything that goes beyond that and any warez talk (direct or indirectly) will, of course, considered as a break of the Forum Rules.
DISCLAIMER : I request each and every member of this forum to not ask, share your belle shell app with any other member in any form(cfw,sis,..etc)in this thread as it will be a violation of the forum rules and I shall take no responsiblity for the consequences you face from the moderators of this forum.
I am sharing some mods
by destroyer and
arindam_mitra1985 for .qml files
Who want some modifications in Belle Shell:EDITING MIN/MAX HOMESCREEN NUMBERSIf you want to have minimum 1 homescreen or get more than 6 homescreens at max, open main.qml and search for:
function show()
{
miAddDsk.inactive = (desktops.count >= 6);
miDelDsk.inactive = (desktops.count <= 3);
open();
}
So, edit 6 to number you want get maximum and 3 to get minimum.
REMOVING "SHOW OPEN APPS" AND "EXIT BELLE SHELL"To remove these, you need to open again main.qml and search for:
Menu {
id: menuDesk
content: MenuLayout {
This is in line 126.
Now, you will see some options like "Show Open Apps", "Add widget", etc.
To hide "Show Open Apps" and "Exit", put two "//" before code of both, like this:
//MenuItem { text: "Show open apps"; onClicked: shellApp.ShowOpenApps(); }
//MenuItem { text: "Exit"; onClicked: cmdExit(); }
The "Exit Belle Shell" was hidded. But, only in homescreen "Show Open Apps" was hidded. We need to hide it in menu too, so open menupage.qml and search for:
Menu {
id: menu;
content: MenuLayout {
And put two "//" again in here.
To remove Topbar from belle shell by arindam_mitra1985 
Comment the code at line no 29 of main.qml
MouseArea
{
anchors.fill: parent
// onPressed: nBar.open();
}
-
You can get these files opening Belle Shell.sis with SISContent, extract ONLY needed files, edit in notepad and now to update files edited, do as follow:
Click in "Edit" on file you edited (SISContent).
A window will open, click on Update... and select new file updated. Now click OK. File was updated. Do it again with the another one.
Save new sis file. Install on phone.
Note that removes the certificate and if you use a non-hacked phone, you need sign this. This not affect if you will put in ROFS2.
Sorry for my bad english, so +1 me if I helped you! ^^
Source:click hereNOTE:For editing .qml, you can use Notepad++ .
Download from hereAll credits go to destroyer and arindam_mitra1985