12 pagesV  < 1 2 3 4 5 6 > »  
 
REPLY
> Hide extra menu items in Preferences (Preferences.app) | How to reduce the list of programs, tweaks, etc.
directorgeneral
Message#1
18.02.12, 20:29
*******
[offline]

Group: Moderators
Messages 1125
Check in: 19.02.13

Reputation:-  0  +

�������� ������ ������ ���� � ��������� "���������" download


Only for devices withjailbreakth!
For instructions on how to get a jailbreak for your iOS, see this section:
[FAQ] Guide to instructions for jailbreaking


Actual for iOS4, iOS5, iOS6, iOS7, iOS8.

Before any manipulations, create backup copies of files being modified!


Hide standard tabs(such as Notes, Store, Photo, etc.).
Screenshots

Before:
Attached Image
After:
Attached Image


As you can see from the screenshots, the items "Airplane Mode", "Wi-Fi", "Notifications", "Geolocation" were removed

How to make

Hide tabs on the main page
1. Option "Easy. Semi-automatic"

▄■▀■▄

1. Copy fileSettings.plistfrom the archive (see "Files for download" for your version of ios) in/Applications/Preferences.appthroughiFunbox, iFileor any other file manager
2. Open the downloaded file viaiFile,
a window comes out, select "PList Viewer"
Attached Image

3. In the menu that opens, click the topmost line.
Attached Image

4. Next, we see the numbers, that’s where our menu items are hidden. Now we have to find the menu that we want to hide. To do this, click on any digit (in my example it is 4)
Attached Image

and look at the menu id (or label) (in my case this is MOBILE_DATA_SETTINGS_ID, which means "Cellular settings")
Attached Image

Decoding of all values ​​and their order are given below.
0 - PSGroupCell - separator between menus
1 - AIRPLANE_MODE - Airplane Mode
2 - WIFI - WiFi
3 - Bluetooth - Bluetooth
4 - MOBILE_DATA_SETTINGS_ID - Cellular settings
5 - INTERNET_TETHERING - Modem Mode
6 - VPNPREFERENCES - VPN Settings
7 - Carrier - Operator

8 - PSGroupCell - separator between menus

9 - NOTIFICATIONS_GROUP_ID - Notification Center
10 - ControlcENTER - Control Point
11 - DO_NOT_DISTURB - Do Not Disturb

12 - PSGroupCell - separator between menus

13 - General - Basic
14 - Wallpaper - Wallpaper and brightness
15 - Sounds - Sounds
16 - PASSCODE - Password
17 - TOUCHID_PASSCODE - TouchID
18 - Privacy - Privacy

19 - PSGroupCell - separator between menus

20 - CASTLE - iCloud
21 - ACCOUNT_SETTINGS - Mail, addresses, calendars
22 - NOTES - Notes
23 - REMINDERS - Reminders
24 - Phone - Phone
25 - MESSAGES - Messages
26 - FACETIME - Facetime
27 - MAPS - Maps
28 - COMPASS - Compass
29 - Safari -Safari

30 - PSGroupCell - separator between menus

31 - STORE - iTunes Store, App Store
32 - MUSIC - Music
33 - VIDEO - Video
34 - Speakers
35 - Photos - Photo & Camera
36 - GAMECENTER - Game Center

37 - PSGroupCell - separator between menus

38 - TWITTER - Twitter
39 - FACEBOOK - Facebook
40 - FLICKR - Flickr
41 - VIMEO - Vimeo
42 - WEIBO
43 - TENCENT_WEIBO
44 - victoria (NIKE_PLUS_IPOD) - Nike

The menu order (from 0 to 44) is specified for ios7, on other versions of ios, the data may differ (but the names of the id or label will remain the same)


Once we have found the menu item we need (which we want to hide), go to step 5.

5. Click on requiredCapabilities
Attached Image

further Dictionary
Attached Image

and switch the toggle switch from gray to green
Attached Image
Attached Image

6. All item is hidden. In order to see the changes, you need to close the "Settings" program (twice with the Home button and pull the picture with the application up) and run it again

▀■▄■▀

Option 2 "Complicated. Fully Manual"

▄■▀■▄

In this option, you can edit each setting yourself.

In order to hide the STANDARD settings such as Notes (Store), Store, Photo, etc., we need to edit the Settings.plist file (/var/stash/Applications/Preferences.app), in which we are looking for the configuration we are interested in and insert the code between the "opening"<dict>and "closing"</ dict>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

(false - disable hiding, true - enable hiding)
Note: to make it easier to search, the slash (/) indicates the names of commands in the list (for example,Airplane Mode / Airplane Mode, Wifi / AirPortSettingsetc.)
Remove the iconAirplane Mode / Airplane Mode
To do this, look for the line:
<string>AIRPLANE_MODE</ string>
<key>isDestructive</ key>
<true />
<key>label</ key>
<string>Airplane mode</ string>

Under the above text insert:
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>
<dict>

It turns out:
<string>AIRPLANE_MODE</ string>
<key>isDestructive</ key>
<true />
<key>label</ key>
<string>Airplane mode</ string>
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>
<dict>

Remove the iconWiFi / AirPortSettings
To do this, look for the line:
<key>requiredCapabilities</ key>
<array>
<string>wifi</ string>
</ array>
</ dict>
where the word wifi is changing to ipad
Turns out
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>

Remove the iconModem / WirelessModemSettings
Change these lines
<dict>
<key>bundle</ key>
<string>WirelessModemSettings</ string>
<key>requiredCapabilities</ key>
<array>
<string>cellular-data</ string>
</ array>
</ dict>

on those:
<dict>
<key>bundle</ key>
<string>WirelessModemSettings</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>

Remove the iconNotifications / NOTIFICATIONS
To do this, look for the line:
<string>NOTIFICATIONS_ID</ string>
<key>label</ key>
<string>NOTIFICATIONS</ string>

Under the above text insert:
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>
<dict>

We get:
<string>NOTIFICATIONS_ID</ string>
<key>label</ key>
<string>NOTIFICATIONS</ string>
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>
<dict>

Remove the iconGeolocation / LOCATION_SERVICES
To do this, look for the line:
<string>Location.png</ string>
<key>label</ key>
<string>LOCATION_SERVICES</ string>
</ dict>
<dict>

After line<string>LOCATION_SERVICES</ string>insert:
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>

We get:
<string>Location.png</ string>
<key>label</ key>
<string>LOCATION_SERVICES</ string>
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>
<dict>

Remove the iconOperator / CarrieerSettings
To do this, look for the line:
<key>requiredCapabilities</ key>
<array>
<string>cellular-data</ string>
</ array>
</ dict>
<dict>

where is the wordcellular-datachange toipad
It turns out:
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>
</ dict>
<dict>

Remove the iconSounds
To do this, look for the line:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>
<dict>

where is the wordfalsechange totruewe get:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconBrightness / Brightness
To do this, look for the line:
<string>Brightness</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>
<dict>

where is the wordfalsechange totruewe get:
<string>Brightness</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconWallpaper / Wallpaper
To do this, look for the line:
<string>Wallpaper</ string>
<key>isController</ key>
<true />
<key>label</ key>
<string>Wallpaper</ string>
</ dict>
<dict>

before stitching</ dict>insert:

<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<string>Wallpaper</ string>
<key>isController</ key>
<true />
<key>label</ key>
<string>Wallpaper</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconGeneral / General
To do this, look for the line:
<string>Settings.png</ string>
<key>label</ key>
<string>General</ string>
</ dict>
<dict>

after the line<string>General</ string>insert:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<string>Settings.png</ string>
<key>label</ key>
<string>General</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconiCloud / CASTLE
To do this, look for the line:
<string>CASTLE</ string>
<key>overridePrincipalClass</ key>
<true />
</ dict>
<dict>

After the line<true />insert:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<string>CASTLE</ string>
<key>overridePrincipalClass</ key>
<true />
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconMail, addresses, calendars / ACCOUNT_SETTINGS /

To do this, look for the line:
<string>com.apple.momail</ string>
</ dict>
<dict>

After the line<string>com.apple.momail</ string>insert:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<string>com.apple.momail</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconTwitter / TWITTER
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>TWITTER</ string>
</ dict>
<dict>

After the line<string>TWITTER</ string>insert:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<key>isController</ key>
<true />
<key>label</ key>
<string>TWITTER</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>
<dict>

Remove the iconPhone / Phone
To do this, look for the line:
<key>requiredCapabilities</ key>
<array>
<string>telephony</ string>
</ array>

Change the wordtelephonyonipadwe get:
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>

Remove the iconFaceTime / ConferenceRegistrationSettings
To do this, look for the line:
<dict>
<key>bundle</ key>
<string>ConferenceRegistrationSettings</ string>
<key>isController</ key>
<false />
<key>requiredCapabilities</ key>
<array>
<dict>
<key>venice</ key>
<true />
</ dict>

Change the wordveniceonipadwe get:
<dict>
<key>bundle</ key>
<string>ConferenceRegistrationSettings</ string>
<key>isController</ key>
<false />
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>

Remove the iconSafari / Safari
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>Safari</ string>

After line<string>Safari</ string>add:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<key>isController</ key>
<true />
<key>label</ key>
<string>Safari</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconMessages / SMSPreferences
To do this, look for the line:
<string>SMSPreferences</ string>
<key>isController</ key>
<false />

After line<false />insert:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<string>SMSPreferences</ string>
<key>isController</ key>
<false />
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconMusic / MUSIC
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>MUSIC</ string>

Insert below:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<string>MUSIC</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconVideo / VIDEO
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>VIDEO</ string>

insert below:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

we get:
<key>isController</ key>
<true />
<key>label</ key>
<string>VIDEO</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconPhotos / Photos
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>Photos</ string>

insert below:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<key>isController</ key>
<true />
<key>label</ key>
<string>Photos</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconNotes / NOTES
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>NOTES</ string>

insert below:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<key>isController</ key>
<true />
<key>label</ key>
<string>NOTES</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconShop / STORE
To do this, look for the line:
<key>isController</ key>
<true />
<key>label</ key>
<string>STORE</ string>

insert below:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

We get:
<key>isController</ key>
<true />
<key>label</ key>
<string>STORE</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

Remove the iconNike + iPod / NIKE_PLUS_IPOD
To do this, look for the line:
<string>NIKE_PLUS_IPOD</ string>
<key>requiredCapabilities</ key>
<array>
<string>nike ipod</ string>
</ array>

wordnike ipodchange toipadwe get:
<string>NIKE_PLUS_IPOD</ string>
<key>requiredCapabilities</ key>
<array>
<string>ipad</ string>
</ array>


▀■▄■▀

If you have hidden some kind of icon, for example, geolocation, you can safely turn on / off location detection when you need it via Sbsettings. Those. the settings will still work, just will not be displayed in the "Settings" program.

Remove separators between blocks (see screenshots below)
Screenshots
Attached Image
Attached Image

Attached Image
Attached Image

1. Option "Easy. Semi-automatic"

▄■▀■▄

1. Download from the attachment (see "Files for download") an archive with the plist file you need (depending on where you want to remove the separator: if on the main page, then downloadSettings.plistif in the menu "Basic", thenGeneral.plist)
Copy the file from the archive to/Applications/Preferences.appthroughiFunbox, iFileor any other file manager
2. Open the downloaded file viaiFile,
a window comes out, select "PList Viewer"
Attached Image

3. In the menu that opens, click the topmost line.
Attached Image

4. Next, we see the numbers, that’s where our menu separator items are hidden.
Looking for the item responsible for the distance: PSGroupCell
The decoding of all values ​​and their order is given below.
0 - PSGroupCell - separator between menus
1 - AIRPLANE_MODE - Airplane Mode
2 - WIFI - WiFi
3 - Bluetooth - Bluetooth
4 - MOBILE_DATA_SETTINGS_ID - Cellular settings
5 - INTERNET_TETHERING - Modem Mode
6 - VPNPREFERENCES - VPN Settings
7 - Carrier - Operator

8 - PSGroupCell - separator between menus

9 - NOTIFICATIONS_GROUP_ID - Notification Center
10 - ControlcENTER - Control Point
11 - DO_NOT_DISTURB - Do Not Disturb

12 - PSGroupCell - separator between menus

13 - General - Basic
14 - Wallpaper - Wallpaper and brightness
15 - Sounds - Sounds
16 - PASSCODE - Password
17 - TOUCHID_PASSCODE - TouchID
18 - Privacy - Privacy

19 - PSGroupCell - separator between menus

20 - CASTLE - iCloud
21 - ACCOUNT_SETTINGS - Mail, addresses, calendars
22 - NOTES - Notes
23 - REMINDERS - Reminders
24 - Phone - Phone
25 - MESSAGES - Messages
26 - FACETIME - Facetime
27 - MAPS - Maps
28 - COMPASS - Compass
29 - Safari -Safari

30 - PSGroupCell - separator between menus

31 - STORE - iTunes Store, App Store
32 - MUSIC - Music
33 - VIDEO - Video
34 - Speakers
35 - Photos - Photo & Camera
36 - GAMECENTER - Game Center

37 - PSGroupCell - separator between menus

38 - TWITTER - Twitter
39 - FACEBOOK - Facebook
40 - FLICKR - Flickr
41 - VIMEO - Vimeo
42 - WEIBO
43 - TENCENT_WEIBO
44 - victoria (NIKE_PLUS_IPOD) - Nike

The menu order (from 0 to 44) is specified for ios7, on other versions of ios, the data may differ (but the names of the id or label will remain the same)

Attached Image
Attached Image


5. Click on reguiredCapabilities
Attached Image

further Dictionary
Attached Image

and switch the toggle switch from gray to green
Attached Image
Attached Image

6. All distance removed.

▀■▄■▀

Option 2 "Complicated. Fully Manual"

▄■▀■▄

It is necessary to replace these lines from the file.Settings.plist (/var/stash/Applications/Preferences.app):
<dict>
<key>cell</ key>
<string>PSGroupCell</ string>
</ dict>

on those
<dict>
<key>cell</ key>
<string>PSGroupCell</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>
</ dict>

▀■▄■▀


Hide the tabs in the "Major" menu.
Screenshots
Standard General.plist:
Attached Image
Attached Image

Edited General.plist:

Easy customization:
Attached Image
Attached Image

Full customization:
Attached Image


1. Option "Easy. Semi-automatic"

▄■▀■▄

1. Copy fileGeneral.plistfrom the archive (see "Files for download" for your version of ios) in/Applications/Preferences.appthroughiFunbox, iFileor any other file manager
2. Open the downloaded file viaiFile,
a window comes out, select "PList Viewer"
Attached Image

3. In the menu that opens, click the topmost line.
Attached Image

4. Next, we see the numbers, that’s where our menu items are hidden. Now we have to find the menu that we want to hide. To do this, click on any digit (in my example it is 4)
Attached Image

and look at the menu idor label (in my case, id is SOFTWARE_UPDATE_LINK, and label is SOFTWARE_UPDATE, which means Software Update)
Attached Image

Decoding of all values ​​and their order are given below.
0 - About (AboutController) - About this device
1 - SOFTWARE_UPDATE - Software Update
2 - SIRI_INSERT_POINT - Siri
3 - SIRI - Siri
4 - SearchSettings - Spotlight Search
5 - TEXT_Size - Text Size
6 - ACCESSIBILITY - Universal Access
7 - Multitasking_Gesture_Group - Group of multitasking gestures (Apple is hidden by default)
8 - Multitasking_Gesture_Switch - Toggle On / Off. multitasking (hidden by default by Apple)
9 - Rotation_Switch_Action_Group - The "Actions when changing a switch on the side panel of the phone" group (Apple planned to switch sideways to control either the volume or the screen rotation). Apple is hidden by default
10 - Lock_Rotation_Button - When you change the switch on the side of the phone, the auto-rotate is turned on / off. Function hidden by default by Apple
11 - Mute_Button - When changing the switch on the side of the phone, the sound is turned on / off. Function Activated and hidden by default Apple.

12 - PSGroupCell - separator between menus

13 - USAGE - Statistics
14 - AUTO_CONTENT_DOWNLOAD - Content Update
15 - PAD_COVER_GROUP - separator between menus
16 - AUTOLOCK - Auto Block
17 - RESTRICTIONS - Restrictions
18 - PADE_CASE_LOCK

19 - PSGroupCell - separator between menus

20 - DATE_AND_TIME - Date and Time
21 - KeyboadSettings - Keyboard
22 - INTERNATIONAL - Language and Text
23 - TV + SYNC + VPN + PROFILES_GROUP - separator between menus
24 - TV_OUT
25 - AirTrafficSettings - Sync with iTunes
26 - VPN
27 - PROFILES - Profiles

28 - PSGroupCell - separator between menus

29 - Reset - Reset

The menu order (from 0 to 29) is specified for ios7, on other versions of ios, the data may differ (but the names of the id or label will remain the same)


Once we have found the menu item we need (which we want to hide), go to step 5.

5. Click on requiredCapabilities
Attached Image

further Dictionary
Attached Image

and switch the toggle switch from gray to green
Attached Image
Attached Image

6. All item is hidden. In order to see the changes, you need to close the "Settings" program (twice with the Home button and pull the picture with the application up) and run it again

▀■▄■▀

Option 2 "Complicated. Fully Manual"

In order to hide the tabs from the Main menu (for example, "Software Update"), we need to edit the fileGeneral.plist (/var/stash/Applications/Preferences.app), in which we are looking for the configuration we are interested in and insert the code between the "opening"<dict>and "closing"</ dict>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>

(false - disable hiding, true - enable hiding)

If for some menu there are already requiredCapabilities, then select the whole block and replace it with our
Example
Take the Universal Access tab (ACCESSIBILITY). It contains the following code:
<key>requiredCapabilities</ key>
<array>
<string>accessibility</ string>
</ array>

We select it and insert ours, it turns out:
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<true />
</ dict>
</ array>



Hide tweaks from Sidia .
Screenshots
Attached Image
Attached Image

How to make
Everything is much simpler here. Need to go to/ Library / PreferenceLoader / Preferencesand transfer all the unnecessary tweaks to us in a folder, say,/ Library / PreferenceLoader /(in case you suddenly need these settings, it will not be difficult for you to return them to their previous place).

Hide program settings from the AppStore .
Screenshots
Attached Image
Attached Image

How to make
We go to/ var / mobile / Applications / The program we want to hide / Open the "Name app app.app" /rename foldersettings.bundle(For example, in settings.bundle.bak).
Next, go to/ var / mobile / Library / Cacheslook for and delete the file with the namecom.apple.mobile.installation.plist. Next, reboot (full, not respring)
All, the icon in the "Settings" program will no longer be displayed.

Note1. The settings.bundle folder is available only for those applications in which developers have provided the function of editing settings. In other words, if there is no settings.bundle folder, it means that no settings for this program will be displayed in the Settings application. And vice versa.

Note 2. When deletingcom.apple.mobile.installation.plistand restarting the device sometimes from the home screen (Springboard) all the icons of applications installed from the AppStore disappear. This suggests that the newcom.apple.mobile.installation.plistdoes not see old applications. To make the applications appear again, we goUser / Library / Cachesand re-deletecom.apple.mobile.installation.plist. After this file is deleted again, icons appear and are sorted into folders (as configured previously)


If you want to return the changes (ie, display the program), return the old folder name (settings.bundle) and again delete the filecom.apple.mobile.installation.plist

Mod "Advanced options in the General tab" .
Fashion features:
- Editing operator logo(irrelevant, starting with ios5)
- Display gsm reception level (in numbers)
- Displays the level of reception wifi (in numbers)
- Display battery level (relevant for iPod users)
- Hiding elements of the battery when charging (there is no battery icon on the lock screen and in the status bar)
- Disable low battery notification
- Disable auto-lock screen
- Disable device lock after respring and reboot.

Attention! Before turning on the "Respring + Lock" item, remove the password when unlocking the device! If you have not done so and everything is gone - read here .

Screenshots
Attached Image
Attached Image
Attached Image
Attached Image
Attached Image

How to make
1. Option "Easy. Semi-automatic"

▄■▀■▄

1. Download the archive "Mod" Advanced Options "" (see "Files for download")
2. Download the archive "Settings.plist and General.plist" for your version of iOS (see "Files for download")
3. Copy the contents of these two archives in /Applications/Preferences.app
4. Open the file General.plist throughiFile,
a window comes out, select "PList Viewer"
Attached Image

5. In the menu that opens, click the topmost line.
Attached Image

6. Next, we see the numbers, that's just in them, and hidden our new item "Advanced."
Scroll through the page to the very end. Click on the latest tab.
Make sure to open the desired tab (in the label should be "Advanced")
Attached Image
Attached Image

7. Click on requiredCapabilities
Attached Image

further Dictionary
Attached Image

and switch the toggle switch from green to gray
Attached Image

8. Everything. Save the document. Restart the program "Settings". After we go to "Settings" - "Basic" and see at the end of the list our new item "Advanced". We use!

▀■▄■▀

Option 2 "Difficult. Manual"
1. Download the archive "Mod" Advanced Options "" (see "Files for download")
and unpack it in/Applications/Preferences.app
2. ThroughiFileopen the fileGeneral.plistand paste the following code
after any closing</ dict>:
<dict>
<key>cell</ key>
<string>PSLinkListCell</ string>
<key>label</ key>
<string>Additionally</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>



Create your own menu items
How to make

Create a menu Sidia
Screenshots
Attached Image
Attached Image

1. Option "Easy. Semi-automatic"

▄■▀■▄

1. Download the archive "Mod" Menu Cydia "" (see. "Files for download")
2. Download the archive "Settings.plist and General.plist" for your version of iOS (see "Files for download")
3. Copy the contents of these two archives in /Applications/Preferences.app
4. Open the Settings.plist file viaiFile,
a window comes out, select "PList Viewer"
Attached Image

5. In the menu that opens, click the topmost line.
Attached Image

6. Next, we see the numbers, that’s where our new item “Cydia” is hidden in them.
Scroll through the page to the very end. Click on the latest tab.
Make sure to open the desired tab (in the label should be written "Cydia")
Attached Image
Attached Image

7. Click on requiredCapabilities
Attached Image

further Dictionary
Attached Image

and switch the toggle switch from green to gray
Attached Image

8. Everything. Save the document. Restart the program "Settings" and see our new menu "Cydia". We use on health!
▀■▄■▀

Option 2 "Complicated. Fully Manual"

▄■▀■▄

For example, I created a menuCydia, when opened, the settings of 3 tweaks appear:Pwntunes, Activator, Appstorelous.

1. Create a Cydia.plist file with the following contents:
<? xml version = "1.0" encoding = "UTF-8"?>
<! DOCTYPE plist PUBLIC "- // Apple // DTD PLIST 1.0 // EN" "[url =" http: //www.apple.com/DTDs/PropertyList-1.0.dtd \ ">"] http://www.apple.com/DTDs/PropertyList-1.0.dtd">[/ url]
<plist version = "1.0">
<dict>
<key>items</ key>
<array>

</ array>
<key>title</ key>
<string>Cydia</ string>
</ dict>
</ plist>

2. Create a Cydia menu in the main menu. For this:

Open up/Applications/Preferences.app/Settings.plistand anywhere

for example, after the Aviation Mode Menu, i.e. after lines with closing</ dict>
(for example, after the Airplane Mode Menu, i.e. after the lines with the closing</ dict>:
</ dict>
</ array>
<key>set</ key>
<string>setAirplaneMode: specifier:</ string>
</ dict> )

insert the code:
<dict>
<key>cell</ key>
<string>PSLinkListCell</ string>
<key>label</ key>
<string>Cydia</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>

WhereCydia- the name of our new menu

3. Go to / Library / PreferenceLoader / Preferences / where we look for files * .plist with our tweaks that we want to add to our menuCydia. In my case it isAppStorelous.plist, PwnTunes.plist, LibActivator.plist.

We copy these files in a folder/Applications/Preferences.app/

4. Open each of the copied files and copy the code from there from
<dict> before </ dict> . Those.

ForPwnTunes:
Pwntunes
<dict>
<key>cell</ key>
<string>PSLinkCell</ string>
<key>icon</ key>
<string>/Applications/PwnTunes.app/Icon_small.png</ string>
<key>isController</ key>
<string>1</ string>
<key>label</ key>
<string>Pwntunes</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>


ForActivator:
Activator
<dict>
<key>bundle</ key>
<string>LibActivator</ string>
<key>cell</ key>
<string>PSLinkCell</ string>
<key>icon</ key>
<string>Activator.png</ string>
<key>isController</ key>
<string>1</ string>
<key>label</ key>
<string>Activator</ string>
</ dict>


ForAppStorelous:
Appstorelous
<dict>
<key>cell</ key>
<string>PSLinkCell</ string>
<key>icon</ key>
<string>/Applications/PwnTunes.app/Icon_small.png</ string>
<key>isController</ key>
<string>1</ string>
<key>label</ key>
<string>Appstorelous</ string>
</ dict>

5. Copied codes from step 4. paste in created in paragraph 1 fileCydia.plistbetween <array> and </ array> .

those. you will have the following:
Cydia.plist
<? xml version = "1.0" encoding = "UTF-8"?>
<! DOCTYPE plist PUBLIC "- // Apple // DTD PLIST 1.0 // EN" "[url =" http: //www.apple.com/DTDs/PropertyList-1.0.dtd \ ">"] http://www.apple.com/DTDs/PropertyList-1.0.dtd">[/ url]
<plist version = "1.0">
<dict>
<key>items</ key>
<array>
<dict>
<key>cell</ key>
<string>PSLinkCell</ string>
<key>icon</ key>
<string>/Applications/PwnTunes.app/Icon_small.png</ string>
<key>isController</ key>
<string>1</ string>
<key>label</ key>
<string>Pwntunes</ string>
<key>requiredCapabilities</ key>
<array>
<dict>
<key>ipad</ key>
<false />
</ dict>
</ array>
</ dict>
<dict>
<key>bundle</ key>
<string>LibActivator</ string>
<key>cell</ key>
<string>PSLinkCell</ string>
<key>icon</ key>
<string>Activator.png</ string>
<key>isController</ key>
<string>1</ string>
<key>label</ key>
<string>Activator</ string>
</ dict>
<dict>
<key>cell</ key>
<string>PSLinkCell</ string>
<key>icon</ key>
<string>/Applications/PwnTunes.app/Icon_small.png</ string>
<key>isController</ key>
<string>1</ string>
<key>label</ key>
<string>Appstorelous</ string>
</ dict>
</ array>
<key>title</ key>
<string>Cydia</ string>
</ dict>
</ plist>


That's all the menu is ready :)

If after adding lines of menu tweak appeared, but remains empty, do a little differently

▀■▄■▀


List of tweaks in the Cydia menu (see "Files for download")
Activator
Adblocker
Applocker
CCControls
Eclipse
Flux
iLEX
KillApp7
KuaiDial
LocalIAPStore
Nitrous
Pwntunes
PhotoAlbumsPlus

If your tweak is not in the list, but you would like to add it to your Cydia menu, leave a request in the comments!
How to hide from the Cydia menu tweaks that you have not installed!

▄■▀■▄

1. Open the Cydia.plist file (which we uploaded to /Applications/Preferences.app) throughiFile,
a window comes out, select "PList Viewer"
Attached Image

2. In the menu that opens, click the topmost line
Attached Image

3. Next, we see the numbers, that's what tviki from the "Cydia" menu are hidden in.
Now we have to find the menu that we want to hide. To do this, click on any digit (in my example it is 4)
Attached Image

and look at the menu id (or label) (in my case, the label is Eclipse (Eclipse Tweak - "Night Mode" in iOS))
Attached Image

4. Click on requiredCapabilities
Attached Image

further Dictionary
Attached Image

and switch the toggle switch from gray to green
Attached Image

5. Everything. Save the document. Go to our Cydia menu and see that our Eclipse tweak is hidden!

▀■▄■▀


Add icons to the menu
Screenshots
Attached Image
How to make
Open the desiredplist(eg,General.plist) and in each item (inside<dict> </ dict>) add the code:
<key>icon</ key>
<string>NAME_ICONS.png</ string>

If the icon is not in the folder with the application that we are editing, you can specify the path to the icon: for example:
<key>icon</ key>
<string>/Applications/Cydia.app/[email protected]</ string>

In this example, I created the Cydia menu in Preferences.app (Settings), and took the icon directly from the Cydia application (/Applications/Cydia.app)

Features of adding icons in the "Settings"



Files to download
Settings.plist and General.plist

Attached Image Download
Attached Image Download
Attached Image Download

Mod "Advanced Options"
Download

Mod "Menu Cydia"
Download


Want to learn more about plist files? Download instructionshere
Material prepared:
directorgeneral




Post has been editeddirectorgeneral - 11.01.15, 12:41
Floron
Message#22
25.02.12, 15:45
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 145
Check in: 03.05.11
Apple iPhone X

Reputation:-  80  +

sobchyksobchyk

You can make it so that only on the lock screen there is no rechargeable battery, and in the status bar there is


--------------------
iPhone X 64 GB. iOS 12
iPad 2018 128 GB. iOS 12
Apple watch series 4 sport nike + 44mm black
iPod touch 4G 32 GB. iOS 6.1.2 jeil
Valerka
Message#23
25.02.12, 16:25
Krosavcheg
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 4348
Check in: 17.02.07
Xiaomi Mi 9 6/128, 6/64

Reputation:-  323  +

Cool, is this all without additional tweaks from the sidium?


--------------------
Morning melted in the fog, Shelestels reeds.
Graceful as fallow deer, Drunks walked across the field!
sobchyksobchyk
Message#24
25.02.12, 16:34
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

ahem, there is something to think about. In fact, the playlists I posted do not make any major changes: just in the file com.apple.springboard (/ private / var / mobile / Library / Preferences) there is a parameter "SBHideACPower", which defaults to false. Actually, this mod allows you to set these values ​​to true. These are the elements that hide :) This mod cannot control what exactly to hide.

As an option, I suggest empirically finding a file with the png extension in Springboard.app, which gives a black background when charging and replaces it with your own, while the size should be exactly the same. Then do the same with the battery charging files (there are about 10 in my opinion)


Cool, is this all without additional tweaks from the sidium?

That's right;)

Post has been editedsobchyksobchyk - 25.02.12, 16:37


--------------------
Floron
Message#25
25.02.12, 16:56
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 145
Check in: 03.05.11
Apple iPhone X

Reputation:-  80  +

As an option, I suggest empirically finding a file with the png extension in Springboard.app, which gives a black background when charging and replaces it with your own, while the size should be exactly the same. Then do the same with the battery charging files (there are about 10 in my opinion)


In sprintomize 2, in the corresponding menu, I set the item to turn off the display of charging on the lockscreen, but the batteries still remained. And I had to replace transparent png


--------------------
iPhone X 64 GB. iOS 12
iPad 2018 128 GB. iOS 12
Apple watch series 4 sport nike + 44mm black
iPod touch 4G 32 GB. iOS 6.1.2 jeil
Floron
Message#26
25.02.12, 17:02
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 145
Check in: 03.05.11
Apple iPhone X

Reputation:-  80  +

Add to cap:

Make the switch orange:
Add code
<key>alternatecolors</ key>
<true />


--------------------
iPhone X 64 GB. iOS 12
iPad 2018 128 GB. iOS 12
Apple watch series 4 sport nike + 44mm black
iPod touch 4G 32 GB. iOS 6.1.2 jeil
sobchyksobchyk
Message#27
25.02.12, 17:15
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

Floron @ 02.25.2012, 17:56*
In sprintomize 2, in the corresponding menu, I set the item to turn off the display of charging on the lockscreen, but the batteries still remained. And I had to replace transparent png

Well, that's what I was talking about :) You just need to change the files to transparent ones :) Everything is clear with the batteries, but I wonder what file is responsible for the background on the lock screen when charging !?
So for the sake of curiosity interesting :)
In general, I'm quite happy with how the mode turns off these elements and you do not need to install any tweaks;)

Make the switch orange

I doubt that info is needed in a hat. To be honest, I noticed this code a long time ago, I even changed the toglovt of some, but here, for example, the bluetooth slider, wifi can not be decorated like that. You need to understand where to embed this code :) Many hardly need this.

Post has been editedsobchyksobchyk - 25.02.12, 17:21


--------------------
Floron
Message#28
25.02.12, 17:24
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 145
Check in: 03.05.11
Apple iPhone X

Reputation:-  80  +

Many hardly need this.


For general development, as our mathematician said, proving Menelaus theorem


--------------------
iPhone X 64 GB. iOS 12
iPad 2018 128 GB. iOS 12
Apple watch series 4 sport nike + 44mm black
iPod touch 4G 32 GB. iOS 6.1.2 jeil
sobchyksobchyk
Message#29
26.02.12, 03:12
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

It is better to create a separate FAQ for these functions (alternateColors, Key, Label, Detail, Default, Defaults, etc.). I thought about it, but so far there is no time to translate the article from English :)
And here you can insert this code, only it makes little sense from this :)


--------------------
basy56
Message#30
26.02.12, 11:07
Experienced
******
[offline]

Group: Friendssavagemessiahzine.com
Messages 491
Check in: 29.07.11

Reputation:-  33  +

sobchyksobchyk
great job! The mod works !!! He hid the battery cells, turned off the lock after respiration and the annoying notifications about low battery. But all kinds of wifi and gsm numbers are not needed for me, so I didn’t even include it.

By the way, I tried to remove applications from the Appstore according to the instructions, something I did not succeed. Deleted settings.bundle and something doesn’t disappear :(
Rohff
Message#31
26.02.12, 12:25
Guru
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 10298
Check in: 16.08.09
Apple iPhone SE

Reputation:-  763  +

help me please
I did as it is written in the topic header, it turned out, but not quite as it should, I tried to delete another item, the second one was deleted immediately and as it should, I tried again to correct the line code in airplane mode, but there is no effect, tell me how can this be fixed? IPod 4, 5.0.1, create through iTools
Attached Image


Post has been editedRohff - 26.02.12, 12:25


--------------------
sobchyksobchyk
Message#32
26.02.12, 12:58
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

Basy56 @ 02.26.2012, 12:07*
By the way, I tried to remove applications from the Appstore according to the instructions, something I did not succeed. Deleted settings.bundle and something doesn’t disappear

Something seems to me it is necessary to search in a cache, now I will look ...


Rohff @ 02.26.2012, 13:25*
help me please
I did as it is written in the topic header, in the end it turned out, but not quite as it should, I tried to delete another item

so .. I understand that you have chosen the manual method of hiding the settings, right? Still, I recommend downloading the file I posted and doing it. There you just need to look for a function and set the value to true / false after the line "required capabilities" (enable hiding, disable hiding)
If you still want to do it yourself, then you need to cut out the code you inserted and transfer it to another location (after required capabilities)

You can lay out your code (which is now, along with this "portak"), and I will say where, what is wrong, what to fix and where to insert :) It’s just that the code has a certain place, so you only need to insert it into it :) That’s why I wrote in the header which specific lines to look for (inserted part of the branch) and what changes should be made with these lines;)

Post has been editedsobchyksobchyk - 26.02.12, 13:17


--------------------
Rohff
Message#33
26.02.12, 13:19
Guru
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 10298
Check in: 16.08.09
Apple iPhone SE

Reputation:-  763  +

sobchyksobchyk
Yes, I do it myself, because I think troubles can occur with your file (from an iPhone, but I have an iPod), I don’t have some items in the settings that are in your file

settings work with your file .... I thought there would be a crash of settings or something else

Post has been editedRohff - 26.02.12, 13:36


--------------------
sobchyksobchyk
Message#34
26.02.12, 13:27
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

Rohff @ 02.26.2012, 14:19*
settings work with your file .... I thought there would be a crash of settings or something else

Yes, actually, what would he take, I paint something. Settings.plist is a file that simply points to other (executable) links, i.e. it's like a shortcut. Therefore, changing this "shortcut" can do nothing harm. Unless the Settings program itself may stop starting :) But if you know where, what and how to change (this topic was created for this), this simply cannot happen :)


--------------------
basy56
Message#35
26.02.12, 13:35
Experienced
******
[offline]

Group: Friendssavagemessiahzine.com
Messages 491
Check in: 29.07.11

Reputation:-  33  +

Sobchyksobchyk @ 02.26.2012, 13:58*
Something seems to me it is necessary to search in a cache, now I will look ...

may be. It’s not clear what exactly to delete. : comando:
sobchyksobchyk
Message#36
26.02.12, 13:49
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

HURRAH! I found the cache file that is responsible for displaying applications from the Appstore

In general, the technique is as follows:

We go to/ var / mobile / Applications / The program we want to hide / Open the "Name app app.app" /rename foldersettings.bundle(For example, in settings.bundle!).
Next, go to/ var / mobile / Library / Cacheslook for and delete the file with the namecom.apple.mobile.installation.plist. Next Respring
All, the icon in the "Settings" program will no longer be displayed.
If you still want to display the program, return the previous name of the folder (settings.bundle) and again delete the filecom.apple.mobile.installation.plist


--------------------
ahsim2011
Message#37
26.02.12, 15:02
Veteran
********
[offline]

Group: Banned
Messages 1783
Check in: 27.09.11
Jiayu G4S Advanced

Reputation:-  197  +

sobchyksobchykBut what if you do not hide the application settings, but group them into a folder, as in Preference Folders? How can this be done


Posted on 02/26/2012, 15:02:

Achyo @ 02/19/2012, 2:07 PM*
There is also a method to make the settings menu smaller, if someone does not want to hide standard applications using the application grouping method, this is a complicated method but I can tell)))))

Tell me, please
Valerka
Message#38
26.02.12, 16:28
Krosavcheg
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 4348
Check in: 17.02.07
Xiaomi Mi 9 6/128, 6/64

Reputation:-  323  +

Gentlemen, after manipulating your files (I copied files from the archive to the specified folder and then edited the playlist), the iPad stopped turning off the iPad with the turn button (no reaction at all) and also stopped falling asleep at all (it constantly burns regardless of the auto-fallback settings). And also if you press turn-lock in sbsetings, then the pad is blocked and falls asleep but there is no reaction to the power button either .. Only the home button.
The generallist returned its file .. The settings menu has returned, but the problem remains. What a glitch and how to win?


--------------------
Morning melted in the fog, Shelestels reeds.
Graceful as fallow deer, Drunks walked across the field!
sobchyksobchyk
Message#39
26.02.12, 17:10
� �
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 321
Check in: 18.11.10
Apple iPhone 4

Reputation:-  114  +

Valerka @ 02.26.2012, 17:28*
The iPad stopped turning off with the turn button

ahem ...

1. The sheets were tested for performance only on those models that are indicated in the header. Those. Ipad no one checked
2. As I have already said, in principle, these sheets cannot do much harm, because they are just references to other functions, i.e. stupidly shortcuts. By changing the shortcuts, you cannot change the program. But!!! Since the file was used on the iPad, I can’t give any guarantee, because, as I said above, I did not check it. Maybe in the description of the function you need to put not ipad, but some other word or write in capital letters, for example.
3. Is it possible to be 100% sure that these problems occurred after editing the files? It just happens that a person makes a bunch of changes, does not reboot. And after that some garbage pops up, the reasons for which the user can only guess. Though,Valerka,you are not the first day on the site, you probably know what you did :)
By the way, it’s not at all clear from the post what changes were made, which sheets I downloaded, what I edited. If possible in more detail. For all this time, I just broke the “Settings” application 100,500 times and all these times helped backup ... There were no such problems at all

And yet ... When I just created this topic, I then generally suggested simply deleting the settings, rather than hiding them. I personally removed most of the plist. This once again underscores the fact that editing a regular General.plist file cannot cause a system failure.


Ahsim2011 @ 02.26.2012, 16:02*
But what if you do not hide the application settings, but group them into a folder, as in Preference Folders? How can this be done

I’ll explain how later. You can group both system settings and tweaks from sidia. As for the programs from the Appstore, so far the solution has been found only to delete the settings, I can not say anything about the grouping;)

Post has been editedsobchyksobchyk - 26.02.12, 17:28


--------------------
Rohff
Message#40
26.02.12, 17:25
Guru
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 10298
Check in: 16.08.09
Apple iPhone SE

Reputation:-  763  +

Yesterday I just found this topic, I was just thinking about, I’ll create tomorrow, I don’t just like something to hang, but I don’t use it, I like to demolish this thing, of course a lot has been written, the first thought oh nifig how difficult it is, but if you sit down with an experimental in USB, carefully read, without rushing, it turns out that everything is not so complicated, just the author has well described all the processes so that everyone can understand and there are many examples too ....
imho
in general, thank you very much to the author

minimalism is almost complete ...
Attached Image
Attached Image


Post has been editedRohff - 26.02.12, 17:41


--------------------
Valerka
Message#41
26.02.12, 19:19
Krosavcheg
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 4348
Check in: 17.02.07
Xiaomi Mi 9 6/128, 6/64

Reputation:-  323  +

sobchyksobchyk,
It seems to figure it out ...
In the "Advanced settings" the option "Disable autoblock" was "on", but I hid the option itself ... (without noticing that it was turned on) ..
But in this situation, the turn button stops responding to a single press at all .. Both on and off ...
Now everything is done as it should .. everything suits.

PS: Question. So I chose in additional to show the operator’s logo let's say Apple .. How now to return back to show how my operator was before?

Post has been editedValerka - 26.02.12, 19:30


--------------------
Morning melted in the fog, Shelestels reeds.
Graceful as fallow deer, Drunks walked across the field!

12 pagesV  < 1 2 3 4 5 6 > » 


 mobile version    Now: 06/22/19/05: 40