This thread is for posting iconpacks for my Xposed StatusBar Mod. The details on the pack structure is outlined in post 3 of both threads. Please do not ask for module support in this thread, and instead refer to the main module thread.
Please be sure to get permission for all original works of art prior to using them in an iconpack if they are not open source.
Attached you will find a few starter iconpacks, mostly based off the icons from wangtang2k's thread here.
The default_iconpack.xsbm.zip is the one included with the mod, and is provided by @snachez.
UPDATE: Mod now handles importing iconpacks if they end with .xsbm.zip, so I have renamed all of the attached packs below.
The mod settings will only display iconpacks if they are copied/moved to /sdcard/xsbm/
Added the @jotha blue AiO circle pack, inspired by @Holm's CircleMod. Updated to include Sprint support (evdo/1xRTT, 6-bar signal).
Added the minimalist stencil icons by @itiskonrad, modified slightly to account for the separate signal and data icons
default_iconpack
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
audahadi_modded_simple
dr8_aosp4sense
dr8_whiteaosp_kk
Marusaia_blue_circle
superfloup_simplistic
superfloup_simplistic2
thunder07
wangtang2k_blue_arrows & skawt_iconpack_sense6
wangtang2k_blue_curved
wangtang2k_blue_curved_circle
wangtang2k_blue_curved_rainbow
wangtang2k_blue_curved_rainbow_circle
wangtang2k_orange_arrows
wangtang2k_orange_curved
jotha_blue
he_stheone64 for SGS
itiskonrad_stencil - (Updated w/ stenciled USB image & 6-bar signal images for Sprint)
More iconpacks
Sense 6 compatible iconpacks are named as such.
XSBM Iconpack detailed information
The iconpack structure is a simple ZIP file with a specific set of subfolders, and a hidden identifier text file. Below is the file list of the default_iconpack.zip, separated by section/subfolder. If you are building a pack or replacing images within an existing pack, remember to maintain the exact filenames as shown, case-sensitive (i.e. all lowercase):
Pack identifier
Code:
.xsbmpack
Notes: The .xsbmpack is a plain text file that can contain the following fields:
author: name/nick/ID of pack creator or icon creator
note: a short description about the pack (what kind of battery icons, etc). This should be on a single line.
Both fields should be terminated by a single line-feed (Enter)
If this file does not exist within the iconpack zipfile, it will not be imported by the mod. The location of this file within the zip should be at the highest (root) level, not a subfolder. And the name is not a typo; it should be preceded by a period (makes this a hidden file in Linux/Android).
3rd Party App replacements
Code:
apps.txt
apps/
apps/com.android.mms-stat_notify_sms.png
apps/com.android.vending-stat_notify_marketplace_update.png
apps/com.google.android.gm-ic_notification_multiple_mail_holo_dark.png
apps/com.google.android.gm-stat_notify_email.png
Notes: This is the experimental support for per-app notification icon replacements. It consists of an apps.txt file located at the highest (root) level of the zipfile, and contains the following info in a specific format:
packagename-icon_name.png
Where packagename is the APK package name of the application in the Java namespace format. This is usually something like com.author.appname. To determine what the packagename of an APK is, you can use the following command on the phone (via terminal emulator or via adb shell):
pm list packages -f | grep -i appname
An example would be the Gmail new mail notification. To find the packagename, we could enter this vi adb shell:
pm list packages -f | grep -i Gmail
This might return someting similar to:
package:/system/app/Gmail.apk=com.android.gm
The part after the equals sign would be your package name. Another method of finding this data is through the Play Store. If you search for an app, say Gmail, the URL will show the package name as well.
Once you have the packagename, you have to determine what the name of the notification icon is. The easiest way to do this is to use a zip utility (WinZip, 7zip, RAR, etc) to extract the icons in the res/drawable-*/ directories within the app's APK. Most of the time the filenames start with stat_ or contain the word notify, but that isn't always the case.
If you find the file you're hoping to replace, rename it to the above format. Add the entry into the apps.txt file, and place both files into the iconpack zip. The apps.txt goes to the top level of the zip, and the image itself goes to the apps/ subfolder.
The mod supports replacing multiple images from a single package using the same naming convention above.
Because this functionality is experimental, it may not work for every application. Not all apps request notification icon resources in the same manner, so there's no guarantee it will work.
Battery and Battery Charge icons
Code:
battery/
battery/charge/
battery/charge/stat_sys_battery_charge_anim0.png
battery/charge/stat_sys_battery_charge_anim1.png
battery/charge/stat_sys_battery_charge_anim10.png
battery/charge/stat_sys_battery_charge_anim2.png
battery/charge/stat_sys_battery_charge_anim3.png
battery/charge/stat_sys_battery_charge_anim4.png
battery/charge/stat_sys_battery_charge_anim5.png
battery/charge/stat_sys_battery_charge_anim6.png
battery/charge/stat_sys_battery_charge_anim7.png
battery/charge/stat_sys_battery_charge_anim8.png
battery/charge/stat_sys_battery_charge_anim9.png
battery/stat_sys_battery_0.png
battery/stat_sys_battery_1.png
battery/stat_sys_battery_10.png
battery/stat_sys_battery_100.png
battery/stat_sys_battery_11.png
battery/stat_sys_battery_12.png
battery/stat_sys_battery_13.png
battery/stat_sys_battery_14.png
battery/stat_sys_battery_15.png
battery/stat_sys_battery_16.png
battery/stat_sys_battery_17.png
battery/stat_sys_battery_18.png
battery/stat_sys_battery_19.png
battery/stat_sys_battery_2.png
battery/stat_sys_battery_20.png
battery/stat_sys_battery_21.png
battery/stat_sys_battery_22.png
battery/stat_sys_battery_23.png
battery/stat_sys_battery_24.png
battery/stat_sys_battery_25.png
battery/stat_sys_battery_26.png
battery/stat_sys_battery_27.png
battery/stat_sys_battery_28.png
battery/stat_sys_battery_29.png
battery/stat_sys_battery_3.png
battery/stat_sys_battery_30.png
battery/stat_sys_battery_31.png
battery/stat_sys_battery_32.png
battery/stat_sys_battery_33.png
battery/stat_sys_battery_34.png
battery/stat_sys_battery_35.png
battery/stat_sys_battery_36.png
battery/stat_sys_battery_37.png
battery/stat_sys_battery_38.png
battery/stat_sys_battery_39.png
battery/stat_sys_battery_4.png
battery/stat_sys_battery_40.png
battery/stat_sys_battery_41.png
battery/stat_sys_battery_42.png
battery/stat_sys_battery_43.png
battery/stat_sys_battery_44.png
battery/stat_sys_battery_45.png
battery/stat_sys_battery_46.png
battery/stat_sys_battery_47.png
battery/stat_sys_battery_48.png
battery/stat_sys_battery_49.png
battery/stat_sys_battery_5.png
battery/stat_sys_battery_50.png
battery/stat_sys_battery_51.png
battery/stat_sys_battery_52.png
battery/stat_sys_battery_53.png
battery/stat_sys_battery_54.png
battery/stat_sys_battery_55.png
battery/stat_sys_battery_56.png
battery/stat_sys_battery_57.png
battery/stat_sys_battery_58.png
battery/stat_sys_battery_59.png
battery/stat_sys_battery_6.png
battery/stat_sys_battery_60.png
battery/stat_sys_battery_61.png
battery/stat_sys_battery_62.png
battery/stat_sys_battery_63.png
battery/stat_sys_battery_64.png
battery/stat_sys_battery_65.png
battery/stat_sys_battery_66.png
battery/stat_sys_battery_67.png
battery/stat_sys_battery_68.png
battery/stat_sys_battery_69.png
battery/stat_sys_battery_7.png
battery/stat_sys_battery_70.png
battery/stat_sys_battery_71.png
battery/stat_sys_battery_72.png
battery/stat_sys_battery_73.png
battery/stat_sys_battery_74.png
battery/stat_sys_battery_75.png
battery/stat_sys_battery_76.png
battery/stat_sys_battery_77.png
battery/stat_sys_battery_78.png
battery/stat_sys_battery_79.png
battery/stat_sys_battery_8.png
battery/stat_sys_battery_80.png
battery/stat_sys_battery_81.png
battery/stat_sys_battery_82.png
battery/stat_sys_battery_83.png
battery/stat_sys_battery_84.png
battery/stat_sys_battery_85.png
battery/stat_sys_battery_86.png
battery/stat_sys_battery_87.png
battery/stat_sys_battery_88.png
battery/stat_sys_battery_89.png
battery/stat_sys_battery_9.png
battery/stat_sys_battery_90.png
battery/stat_sys_battery_91.png
battery/stat_sys_battery_92.png
battery/stat_sys_battery_93.png
battery/stat_sys_battery_94.png
battery/stat_sys_battery_95.png
battery/stat_sys_battery_96.png
battery/stat_sys_battery_97.png
battery/stat_sys_battery_98.png
battery/stat_sys_battery_99.png
battery/stat_sys_battery_unknown.png
Notes: Battery icons should go in the battery/ subfolder, and battery charging icons should go in the battery/charge/ subfolder.
Bluetooth icons
Code:
bt/
bt/stat_sys_data_bluetooth.png
bt/stat_sys_data_bluetooth_connected.png
Notes: Bluetooth icons should be placed in the bt/ subfolder of the iconpack zip.
Framework icons
Code:
framework/
framework/icon_btn_copy_dark.png
framework/icon_btn_cut_dark.png
framework/icon_btn_paste_dark.png
framework/icon_btn_selected_all_dark.png
framework/icon_btn_search_web_dark.png
framework/stat_notify_car_mode.png
framework/stat_notify_sms.png
framework/stat_sys_adb.png
framework/stat_sys_download_anim0.png
framework/stat_sys_download_anim1.png
framework/stat_sys_download_anim2.png
framework/stat_sys_download_anim3.png
framework/stat_sys_download_anim4.png
framework/stat_sys_download_anim5.png
framework/stat_sys_beats.png
framework/stat_sys_hdmi_on.png
framework/stat_sys_upload_anim0.png
framework/stat_sys_upload_anim1.png
framework/stat_sys_upload_anim2.png
framework/stat_sys_upload_anim3.png
framework/stat_sys_upload_anim4.png
framework/stat_sys_upload_anim5.png
framework/text_anchor_bar_center.png
framework/text_anchor_bar_left.png
framework/text_anchor_bar_right.png
Notes: The framework files go in the framework/ subfolder of the iconpack zip, and contain both resources that are normally located in framework-res.apk and also within framework-htc-res.apk. Not all of the stock framework images are replaced by the mod. For now, it's just the ones in the list above. More may be added to this list at a later date.
GPS icons
Code:
gps/
gps/stat_sys_gps_acquiring.png
gps/stat_sys_gps_on.png
Notes: GPS icons go in the gps/ subfolder of the iconpack zip.
Miscellaneous (to the left) icons
Code:
misc/
misc/icon_btn_menu_dark.png
misc/icon_btn_voice_dark.png
misc/ic_notify_clear.png
misc/ic_notify_notifications.png
misc/ic_notify_quicksettings.png
misc/stat_notify_alarm.png
misc/stat_notify_image.png
misc/stat_notify_image_error.png
misc/stat_notify_more.png
misc/stat_sys_headphones.png
misc/stat_sys_no_sim.png
misc/stat_sys_ringer_silent.png
misc/stat_sys_ringer_vibrate.png
misc/stat_sys_sim_lock.png
misc/stat_sys_sync.png
misc/stat_sys_sync_anim0.png
misc/stat_sys_sync_error.png
Notes: Miscellaneous icons are the ones normally to the left of the statusbar, and also include some found in the notification drop-down window.
Mobile data icons, with each type in a subfolder
Code:
mobile/
mobile/3g/
mobile/3g/stat_sys_data_3g_connected.png
mobile/3g/stat_sys_data_3g_downlink_1.png
mobile/3g/stat_sys_data_3g_downlink_2.png
mobile/3g/stat_sys_data_3g_downlink_3.png
mobile/3g/stat_sys_data_3g_uplink_1.png
mobile/3g/stat_sys_data_3g_uplink_2.png
mobile/3g/stat_sys_data_3g_uplink_3.png
mobile/4g/
mobile/4g/stat_sys_data_4g_connected.png
mobile/4g/stat_sys_data_4g_downlink_1.png
mobile/4g/stat_sys_data_4g_downlink_2.png
mobile/4g/stat_sys_data_4g_downlink_3.png
mobile/4g/stat_sys_data_4g_uplink_1.png
mobile/4g/stat_sys_data_4g_uplink_2.png
mobile/4g/stat_sys_data_4g_uplink_3.png
mobile/e/
mobile/e/stat_sys_data_e_connected.png
mobile/e/stat_sys_data_e_downlink_1.png
mobile/e/stat_sys_data_e_downlink_2.png
mobile/e/stat_sys_data_e_downlink_3.png
mobile/e/stat_sys_data_e_uplink_1.png
mobile/e/stat_sys_data_e_uplink_2.png
mobile/e/stat_sys_data_e_uplink_3.png
mobile/g/
mobile/g/stat_sys_data_g_connected.png
mobile/g/stat_sys_data_g_downlink_1.png
mobile/g/stat_sys_data_g_downlink_2.png
mobile/g/stat_sys_data_g_downlink_3.png
mobile/g/stat_sys_data_g_uplink_1.png
mobile/g/stat_sys_data_g_uplink_2.png
mobile/g/stat_sys_data_g_uplink_3.png
mobile/h/
mobile/h/stat_sys_data_h_connected.png
mobile/h/stat_sys_data_h_downlink_1.png
mobile/h/stat_sys_data_h_downlink_2.png
mobile/h/stat_sys_data_h_downlink_3.png
mobile/h/stat_sys_data_h_uplink_1.png
mobile/h/stat_sys_data_h_uplink_2.png
mobile/h/stat_sys_data_h_uplink_3.png
mobile/evdo/
mobile/evdo/stat_sys_data_evdo_connected.png
mobile/evdo/stat_sys_data_evdo_downlink_1.png
mobile/evdo/stat_sys_data_evdo_downlink_2.png
mobile/evdo/stat_sys_data_evdo_downlink_3.png
mobile/evdo/stat_sys_data_evdo_uplink_1.png
mobile/evdo/stat_sys_data_evdo_uplink_2.png
mobile/evdo/stat_sys_data_evdo_uplink_3.png
mobile/1x/
mobile/1x/stat_sys_data_1x_connected.png
mobile/1x/stat_sys_data_1x_downlink_1.png
mobile/1x/stat_sys_data_1x_downlink_2.png
mobile/1x/stat_sys_data_1x_downlink_3.png
mobile/1x/stat_sys_data_1x_uplink_1.png
mobile/1x/stat_sys_data_1x_uplink_2.png
mobile/1x/stat_sys_data_1x_uplink_3.png
mobile/lte/
mobile/lte/stat_sys_data_lte_connected.png
mobile/lte/stat_sys_data_lte_downlink_1.png
mobile/lte/stat_sys_data_lte_downlink_2.png
mobile/lte/stat_sys_data_lte_downlink_3.png
mobile/lte/stat_sys_data_lte_uplink_1.png
mobile/lte/stat_sys_data_lte_uplink_2.png
mobile/lte/stat_sys_data_lte_uplink_3.png
Notes: The mobile data icons are separated out into subfolders beneath the top mobile/ subfolder, based on the band or network type. If the images found within these subfolders are all different, which is the case with the included default_iconpack.zip, then you will see different data icons depending on what network type your phone is using at that given moment. This sometimes results in "icon flipping", which is when you see different network icons in succession (3G->H->4G->3G). This is normal behavior on most International phones, but not on AT&T and T-Mobile devices. These carriers utilize only 3 or 4 different data icons, for all of the network types. This gives the illusion that your phone is always connected to a fast data network, when it could in reality be connected via a slower technology. But a positive side-effect of this is that the data icons rarely "flip".
If you'd like to restore the "stock" AT&T or T-Mobile behavior, and only see 3-4 network types, such as E, 4G, and 4G-LTE, you can do this by copying one set of network type icons over another, making sure you rename the files accordingly. An example is below:
Say you only want see the 4G icon when you're connected via 3G, H, or 4G. You can do this by copying these files:
Code:
mobile/4g/stat_sys_data_4g_connected.png
mobile/4g/stat_sys_data_4g_downlink_1.png
mobile/4g/stat_sys_data_4g_downlink_2.png
mobile/4g/stat_sys_data_4g_downlink_3.png
mobile/4g/stat_sys_data_4g_uplink_1.png
mobile/4g/stat_sys_data_4g_uplink_2.png
mobile/4g/stat_sys_data_4g_uplink_3.png
And renaming them to:
Code:
mobile/h/stat_sys_data_h_connected.png
mobile/h/stat_sys_data_h_downlink_1.png
mobile/h/stat_sys_data_h_downlink_2.png
mobile/h/stat_sys_data_h_downlink_3.png
mobile/h/stat_sys_data_h_uplink_1.png
mobile/h/stat_sys_data_h_uplink_2.png
mobile/h/stat_sys_data_h_uplink_3.png
Making sure you also place them in the proper subfolder. Repeat the process to overwrite the 3G files as well.
Telephony icons
Code:
phone/
phone/stat_notify_call_mute.png
phone/stat_notify_missed_call.png
phone/stat_notify_voicemail.png
phone/stat_sys_phone_call.png
phone/stat_sys_phone_call_bluetooth.png
phone/stat_sys_phone_call_forward.png
phone/stat_sys_phone_call_on_hold.png
phone/stat_sys_speakerphone.png
Notes: These are the icons shown when using the Dialer/Phone. They go in the phone/ subfolder within the iconpack zip.
HTC Power Saver icons
Code:
powermgr/
powermgr/stat_notify_application_monitor.png
powermgr/stat_notify_power_saver.png
powermgr/stat_notify_power_saver_off.png
Notes: HTC Power Saver icons go in the powermgr/ subfolder within the iconpack zip.
USB connection icon
Code:
settings/
settings/stat_sys_data_usb.png
Notes: This is the USB connection icon that is shown when you plug your phone into a computer. It goes in the settings/ subfolder in the iconpack zip.
Phone signal icons
Code:
signal/
signal/stat_sys_5signal_0.png
signal/stat_sys_5signal_1.png
signal/stat_sys_5signal_2.png
signal/stat_sys_5signal_3.png
signal/stat_sys_5signal_4.png
signal/stat_sys_5signal_5.png
signal/stat_sys_5signal_null.png
signal/stat_sys_signal_flightmode.png
signal/cdma_sys_6signal_0.png
signal/cdma_sys_6signal_1.png
signal/cdma_sys_6signal_2.png
signal/cdma_sys_6signal_3.png
signal/cdma_sys_6signal_4.png
signal/cdma_sys_6signal_5.png
signal/cdma_sys_6signal_6.png
signal/cdma_sys_6signal_null.png
signal/gsm_sys_6signal_0.png
signal/gsm_sys_6signal_1.png
signal/gsm_sys_6signal_2.png
signal/gsm_sys_6signal_3.png
signal/gsm_sys_6signal_4.png
signal/gsm_sys_6signal_5.png
signal/gsm_sys_6signal_6.png
signal/gsm_sys_6signal_null.png
signal/roam/
signal/roam/cdma_sys_r_6signal_0.png
signal/roam/cdma_sys_r_6signal_1.png
signal/roam/cdma_sys_r_6signal_2.png
signal/roam/cdma_sys_r_6signal_3.png
signal/roam/cdma_sys_r_6signal_4.png
signal/roam/cdma_sys_r_6signal_5.png
signal/roam/cdma_sys_r_6signal_6.png
signal/roam/gsm_sys_r_6signal_0.png
signal/roam/gsm_sys_r_6signal_1.png
signal/roam/gsm_sys_r_6signal_2.png
signal/roam/gsm_sys_r_6signal_3.png
signal/roam/gsm_sys_r_6signal_4.png
signal/roam/gsm_sys_r_6signal_5.png
signal/roam/gsm_sys_r_6signal_6.png
Notes: These are the phone signal strength icons, plus the airplane mode icon. They should be placed in the signal/ subfolder within the iconpack zip.
Wifi icons
Code:
wifi/
wifi/stat_sys_wifi_signal_0.png
wifi/stat_sys_wifi_signal_1.png
wifi/stat_sys_wifi_signal_2.png
wifi/stat_sys_wifi_signal_3.png
wifi/stat_sys_wifi_signal_4.png
wifi/stat_sys_wifi_signal_in_0.png
wifi/stat_sys_wifi_signal_in_1.png
wifi/stat_sys_wifi_signal_in_2.png
wifi/stat_sys_wifi_signal_in_3.png
wifi/stat_sys_wifi_signal_in_4.png
wifi/stat_sys_wifi_signal_inandout_0.png
wifi/stat_sys_wifi_signal_inandout_1.png
wifi/stat_sys_wifi_signal_inandout_2.png
wifi/stat_sys_wifi_signal_inandout_3.png
wifi/stat_sys_wifi_signal_inandout_4.png
wifi/stat_sys_wifi_signal_out_0.png
wifi/stat_sys_wifi_signal_out_1.png
wifi/stat_sys_wifi_signal_out_2.png
wifi/stat_sys_wifi_signal_out_3.png
wifi/stat_sys_wifi_signal_out_4.png
Notes: The Wifi signal strength icons go in the wifi/ subfolder within the iconpack zip.
New for Sense 6 is the utilization of the wifi in/out images to display when data is being uploaded and downloaded. I've added the additional image names to the code. For roms prior to Sense 6, the absence of these images shouldn't pose a problem, but if you're on Sense 6 and they aren't included in the iconpack, you'll end up seeing the stock wifi in/out images whenever there is activity. Please have the iconpack creator add/update these images.
Information for themers
If you are building/editing an iconpack, regardless of target device(s), please make icons at least 75x75px so that they will scale properly when imported. I have added code to the module so the icon scale can be selected by the user based on what they feel looks best on their device. This will allow both high-res and low-res devices to utilize your iconpack without image degradation.
For those who want to tesI my icon pack, I modified the blue curved icon pack to change 4G to H+.
Thanks agentdr8 for your hard work on this mod !
superfloup said:
For those who want to tesI my icon pack, I modified the blue curved icon pack to change 4G to H+.
Thanks agentdr8 for your hard work on this mod !
Click to expand...
Click to collapse
So in your pack there is no 4G at all?
bill_viper said:
So in your pack there is no 4G at all?
Click to expand...
Click to collapse
Yes you got 4G LTE. There is G -> E -> 3G -> H -> H+ (instead of AT&T 4G) -> 4G LTE.
I re-added the circle battery icons to the blue curved pack. Hopefully they should be functional now.
reserved
Taking requests for default iconpack.. let me know if there's any app you want done in the soft-white minimal default style.
Done so far :
AirDroid
DI.fm
DigiCal
Google PlayStore
HTC Music
Shuttle
ToDo :
Google Navigation
Google+
Hangouts
XDA
Here is my first status bar mod. Hope this is appreciated.
http://db.tt/3q4kRh4e
Envoyé depuis mon HTC One en utilisant Tapatalk 4 Beta
Marusaia said:
Here is my first status bar mod. Hope this is appreciated.
http://db.tt/3q4kRh4e
Envoyé depuis mon HTC One en utilisant Tapatalk 4 Beta
Click to expand...
Click to collapse
I think something might be wrong with that zip file it's not letting me unpack it
Sent from my HTC One using xda premium
jahmezis45 said:
I think something might be wrong with that zip file it's not letting me unpack it
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
maybe you bad download,for me works great,thanks
Working good here too. Try re-download it.
Envoyé depuis mon ASUS Transformer Pad TF700T en utilisant Tapatalk 4 Beta
jahmezis45 said:
I think something might be wrong with that zip file it's not letting me unpack it
Click to expand...
Click to collapse
Seems fine to me. Works for importing into the mod, and unzipping on my laptop.
Try re-downloading.
Marusaia said:
Here is my first status bar mod. Hope this is appreciated.
http://db.tt/3q4kRh4e
Envoyé depuis mon HTC One en utilisant Tapatalk 4 Beta
Click to expand...
Click to collapse
Can I use some of your Icons and not the whole pack? Just for personal use.
Send from my Phonebox
Marusaia said:
Here is my first status bar mod. Hope this is appreciated.
http://db.tt/3q4kRh4e
Envoyé depuis mon HTC One en utilisant Tapatalk 4 Beta
Click to expand...
Click to collapse
Nice icons mate...:good:
---------- Post added at 02:26 PM ---------- Previous post was at 02:17 PM ----------
I've done some mixing and matching myself & this is what I've came up with so far, still can't get the percentage to show while changing. But if anyone would supply me with the images, I would be more than happy to do up the icon pack by doing the editing and zipping up of another new icon pack....
Philipp_94 said:
Can I use some of your Icons and not the whole pack? Just for personal use.
Send from my Phonebox
Click to expand...
Click to collapse
Sure you can.
Envoyé depuis mon HTC One en utilisant Tapatalk 4 Beta
bhloo said:
Nice icons mate...:good:
---------- Post added at 02:26 PM ---------- Previous post was at 02:17 PM ----------
I've done some mixing and matching myself & this is what I've came up with so far, still can't get the percentage to show while changing. But if anyone would supply me with the images, I would be more than happy to do up the icon pack by doing the editing and zipping up of another new icon pack....
Click to expand...
Click to collapse
Can you post a screenshot of your iconpack please?
bill_viper said:
Can you post a screenshot of your iconpack please?
Click to expand...
Click to collapse
Here u go...:cyclops:
Marusaia said:
Here is my first status bar mod. Hope this is appreciated.
http://db.tt/3q4kRh4e
Envoyé depuis mon HTC One en utilisant Tapatalk 4 Beta
Click to expand...
Click to collapse
Anyway to make the signal icon to change to 4g?:silly:
Anyway, managed to edit & get the H+ icon.
Related
The thread for GTX icons etc here
http://forum.xda-developers.com/showthread.php?t=757511
This is a new mod to NRG sencity series of Roms
New icons , new transparency new wallpapers and new clock...
NEW SET OF ICONS HERE
http://forum.xda-developers.com/showpost.php?p=9225099&postcount=78
Those are icons that I change the look of them to feet the Sencity NRG Roms (probably and other roms)
Mainly they are from Metro Collection by Cendaryn .
From this post
http://forum.xda-developers.com/showthread.php?t=651045
All the credits goes to him for the original design.
I change all of them and i added some new ones to feet my needs and to my like.
They look like those screenshots ...
Tell me what you think ...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Wallpapers
Those are some new wallpapers ....
I did not make them from scratch .. i edit them ....
The lockscreen wallpaper is untouched from the forum
( i dont remember where ...sorry)
Edit : I found where i got the lockscreen wallpaper..... its from this post
http://forum.xda-developers.com/showthread.php?t=812202
by MrBeOTP2 .... thanks
Sencity icons for NRG roms...
Sencity icons for NRG roms...
Here are the first 141 icons with names to much the NRG roms.
I have to make some more to have the full set
There is no need to use icon changer to apply them ... just copy the files to \windows folder.
After that you must use SICC to clear the manila cashe so the new icons appear.
I will continue to make and the rest of the icons to have all of the NRG roms icons in this collection
EDIT : This is the full set of 181 icons for NRG Roms
EDIT
In this post i have uploaded 3 folders icons to much the set
http://forum.xda-developers.com/showpost.php?p=8767977&postcount=20
Custom Icons
Here are 57 custom apps icons to much the sencity theme
The Clock
This the clock from the screenshots
Its from this post here and all the credits goes to 3lixir
I just extracted the files and keep only the clock and hand files
http://forum.xda-developers.com/showthread.php?t=674084
Just copy the files to \windows folder and softreset...
As allways keep a backup of the original files in case of...!!!!
Transparency files
Here are the manila files for semi transparent notification and calendar bars in home tab
I started with some files floating around the forum and i mod them
I very nice job about transparency bars is in this post
http://forum.xda-developers.com/showpost.php?p=8577582&postcount=27677
Just copy the files to \windows folder and softreset...
As allways keep a backup of the original files in case of...!!!!
Hi Colossus,
very nice backgrounds, but the clock where is it?
I'm a fan of IWC, I want it!
Massimo
Ironmax said:
Hi Colossus,
very nice backgrounds, but the clock where is it?
I'm a fan of IWC, I want it!
Massimo
Click to expand...
Click to collapse
Hi massimo ..... thanks
Your clock posted in post #5
Very cool.
Could you post your softkey buttons?
I have the blue ones from the rom.
Just another question, i have the small clock with the weather on the right, the bottom bar that shows max and low temps its to small, and max temp of the day stays out of the bar, is it possible to use or make a big bar in this mod?
Thanks
MJRL said:
Very cool.
Could you post your softkey buttons?
I have the blue ones from the rom.
Just another question, i have the small clock with the weather on the right, the bottom bar that shows max and low temps its to small, and max temp of the day stays out of the bar, is it possible to use or make a big bar in this mod?
Thanks
Click to expand...
Click to collapse
For softkeys
go Startmenu/settings/today and select theme energy 2008
For the weather bar i think its a bug on the sencity theme.... select another weather/clock view...
If they dont fix it in the next version i will try to fix it
Yes, if select another clock its ok like yours.
I've already tried the themes 2007 and 2010, tried now 2008 soft reset but looks like 2007, the buttons don't look like yours.
Thanks
Great work colossus_r
Can you post the file(s) with the gray bubble for the sense messaging tab and lockscreen, please? Mine's still blue
Have you noticed that, when you have a new message, if you go to the messaging tab, the alert bubble remains under the slider? I wonder if this is a bug, or is it supposed to be like that?
BRSG said:
Great work colossus_r
Can you post the file(s) with the gray bubble for the sense messaging tab and lockscreen, please? Mine's still blue
Have you noticed that, when you have a new message, if you go to the messaging tab, the alert bubble remains under the slider? I wonder if this is a bug, or is it supposed to be like that?
Click to expand...
Click to collapse
Probably its a bug ...sencity its not complete....
Here is the file for the black and white bubbles
Remove the .txt from the end of the file name (its a manila file) and...
Copy to \windows folder with total commander
As always keep a copy of the original
More icons here
http://forum.xda-developers.com/showthread.php?p=8722099
Edit: colossus_r could you post your tsk please, my rom its from oct 10, maybe i don't have that theme, i've already tried them all and i don't have that buttons.
Thanks
Dude, great work!
Gonna follow this thread
MJRL said:
More icons here
http://forum.xda-developers.com/showthread.php?p=8722099
Edit: colossus_r could you post your tsk please, my rom its from oct 10, maybe i don't have that theme, i've already tried them all and i don't have that buttons.
Thanks
Click to expand...
Click to collapse
Hi m8...
I saw the tsk and its the on that i use.... so here it is the tsk that i made for you
colossus_r said:
EDIT : This is the full set of 181 icons for NRG Roms
Click to expand...
Click to collapse
This is weird... With your first set of icons, for example, the icon from PIM Backup was changed after copying the files to \Windows folder, and now, with the full set of icons it remains with the original icon that NRG placed in is ROM
EDIT: Found the problem for this... Some of the icons aren't replaced in \Windows folder, and both remain theme, the original and the one from your iconset, but the name of one of them is in CAPS, like this: startpim.png (the original) and STARPIM.PNG (the one from your iconset)... Any solution for this? I copied the files with Total Commander! Copying them with Resco File Explorer gives this error (with one of the unchanged icons): "Cannot copy file 'startie.png'. System cannot write to specified device."
colossus_r, can I make a request? Can you fix the multimedia, office and main settings folder icons, so that they become more similar to the rest of the folders?
For example, in the internet folder icon you used a different template and placed a small folder in the bottom right corner. The three folder icons I mentioned above don't have that.
BRSG said:
This is weird... With your first set of icons, for example, the icon from PIM Backup was changed after copying the files to \Windows folder, and now, with the full set of icons it remains with the original icon that NRG placed in is ROM
EDIT: Found the problem for this... Some of the icons aren't replaced in \Windows folder, and both remain theme, the original and the one from your iconset, but the name of one of them is in CAPS, like this: startpim.png (the original) and STARPIM.PNG (the one from your iconset)... Any solution for this? I copied the files with Total Commander!
colossus_r, can I make a request? Can you fix the multimedia, office and main settings folder icons, so that they become more similar to the rest of the folders?
For example, in the internet folder icon you used a different template and placed a small folder in the bottom right corner. The three folder icons I mentioned above don't have that.
Click to expand...
Click to collapse
ha ha .. i all ways forget something ...this was the one...
I will fix the folder problem m8... and i will post the new icons here...
For the copy of the files i allways use the Resco Explorer and never had any problem like this...
if the problem is still there after softreset let know and i make a mortscript for you to auto copy the files.
I've edited my post above... Tried with Resco Explorer, but no luck, even with several soft-resets in between
Gone flash the ROM again, maybe something went wrong (I did make a HR after flash, but who knows...)
EDIT: After a preliminary investigation LOOOOL, the guilty files are: STARTRDP.PNG, STARTRS.PNG, STARTWCM.PNG... These files do not replace the original icons, and after being copied to the \windows folder can not be deleted, although the original file is also present and not replaced as it should be...
BRSG said:
I've edited my post above... Tried with Resco Explorer, but no luck, even with several soft-resets in between
Gone flash the ROM again, maybe something went wrong (I did make a HR after flash, but who knows...)
EDIT: After a preliminary investigation LOOOOL, the guilty files are: STARTRDP.PNG, STARTRS.PNG, STARTWCM.PNG... These files do not replace the original icons, and after being copied to the \windows folder can not be deleted, although the original file is also present and not replaced as it should be...
Click to expand...
Click to collapse
Check those files to see if the are read-only and if they are change the option and then copy...
Here are the 3 folder files that you ask me ... check them so i update the #1 post
Ok guys , as we all know we have 16 bit color display , and that is our "big" problem.I decide do something with this , and i trie to correct saturation in pictures ,and i understand - "this is it" .
After a 2 week hard coding i proudly present : SATURATOR.
What is it?
This app resaturate png\jpg pictures:
Resaturate png\jpg pictures in apk.
Resaturate your favorite wallpaper.
Resaturate your favorite cyanogen mod 7 themes (apk).
Resaturate your favorite MIUI themes (mtz).
Resaturate ROM!
How to use:
You must install java!!!
i recomended use jre 6.27 x86.
Download "Saturator".Extract "Saturator" folder to root of your hard drive (of course you can try another path BUT I STRONGLY RECOMMENDED PLACE SATURATOR FOLDER TO ROOT OF YOUR HARD DRIVE).Inside saturator folder you can find some files and folders, But we will use:
rom-apk folder - there we will place our files for processing.
iconer folder - you can place your templates for Iconer here.
saturator.ini - there you can change some information.
saturator.exe - it is app itself.
DO NOT DELETE ANYTHING IN THE SATURATOR FOLDER!!!
GUI Interface:
Elements:
Modes - apktool - this mode use apktool for reenginering apk files.
Modes - zip - this mode use rar for unpacking ,and 7zip for packing apk.
Saturation - there you can choose your saturation - use values from 0 to ...what you want.Type your value here and press enter.You will see changes on the picture with "HTC" label
IconerN - use iconer feature in "detect by name" mode.
IconerWH - use iconer feature in "detect by widht and height" mode.
prop-on - this is a proportion for iconer.Change this value and press enter.You will see the chages on picture above.Do not remember choose a template first from list below.
Modes
APKTOOL - apktool will be used for reenginering apk.This mode more accurate then zip mode,BUT in this mode NOT ALL APK CAN BE PROCESSED.So use it ONLY when zip mode fails.
ZIP - rar and zip will be used for reenginering apk.I recommended use this mode.
Iconer
This feature allows you modify icons while processing pictures.See this post for screens.
There is a 2 modes for file processing:
IconerN - Icons will be detected by names in 2 values (by default defined 1 value - icon).You can change values in the saturator.ini, there is a 2 parameters:
icname - icon name variant 1
icname2 - icon name variant 2
By default icname=icon.That means when pictures are processing and file name contain "icon" - iconer will be used.So if you change this value to...browser, for example, the name of file that contain word "browser" will be processed by iconer.
If you also define the icname2 , both of them will be used.Example:
icname=icon
icname2=ic_launcher
files that contain "icon" and "ic_launcher" will be processed by iconer:
.....\com_android_camera_ic_launcher_gallery.png - this file will be processed, because it contain ic_launcher.
.....\com_android_camera_icon_gallery.png - this file will be processed, because it contain icon.
.....\com_android_camera_ic_gallery.png - this file will be not processed, because it not contain ic_launcher and icon.
IconerWH - Icons will be detected by width and height.There is a 2 values for that in saturator.ini (if icwh1 and icwh2 are defined,both of them will be used ):
icwh1 - by default this parameter is defined =48
icwh2 - by default this parameter is defined =72
That means when files are processing and the width and height of picture equal icwh1 or icwh2 - iconer will be used.
I recommended to you use this mode,because almost icons are 48x48 on hdpi,and 72x72 ldpi.
If you want to use your own template for iconer:
Place your templates in iconer folder.The file MUST BE IN PNG FORMAT.height and width of your choice,there is no restriction, but in reasonable aisles.
Saturator.ini
The file in the saturator folder , and you can change (if you want and when you know what are you doing ) this parameters:
icname
icname2
icwh1
icwh2
do not touch anything else!!!!because all other parameters change automatically from the GUI.
restrictions
Restriction by paths:
For APKTOOL mode:
YOU MUST PLACE YOUR APK FILES IN ROM-APK FOLDER WITHOUT SUBFOLDERS:
rom-apk\myapp.apk - OK.
rom-apk\ANYfolder\myapp.apk - wrong.
For ZIP mode:
NONE
Restriction by names of files:
NON ENGLISH SYMBOLS:
rom-apk\com.android.myapp_v1.2.3-1.apk - OK
rom-apk\программа.apk - WRONG.
Apk files CAN CONTAIN ANY SYMBOLS.
Apk files CAN CONTAIN SPACES - They will be renamed automatically:
rom-apk\my app.apk will be renamed to rom-apk\myapp.apk.
PLACE AND GRAB YOUR FILES ONLY TO\FROM ROM-APK FOLDER!!!SATURATED FOLDER - IS A TEMP FOLDER!!!THAT FOLDER AUTOMATICALLY DELITING ON PROGRAMM START.SO AFTER PROCESSING ARE FINISHED YOU CAN SEE THE CHANGES IN THIS FOLDER.BUT THE FILES YOU NEEDED - IN THE ROM-APK FOLDER!!!!!
soon I'll make FAQ with examples.....
Download v1.2
http://www.multiupload.com/J5D0RVSNHK
You also can try my own resaturated version of Typhoon 3.6.8/3.6.9 rom.See details here.
Please feedback to me how it works for you.
OLD VERSION
for easy understanding how it works see video tutorial:
http://www.multiupload.com/VKC3ZHAWW5
Video tut on youtube (thanks to sajin1):
Small explanations:
All files you want to processed you must place in rom-apk dir,and grab it back from that dir.
Saturated folder - is a temp folder for processing pics ,this folder automaticaly deliting on program starts.
saturator.ini - this is a configuration file for saturator, in there you can change saturation 0 - colorless, 0 -... i don`t no limitation, i allways use 1.6
saturatorAmode - in this mode apktool uses for repacking apk - this mode needed in some cases when zip mode not work,in this mode more accurate and safely,but NOT ALL apk can be processed.And there is a limitation in path to apk:you need to place apk files in rom-apk dir WITHOUT subfolders , example - if you put xy.apk in ...rom-apk\app\xy.apk - YOU get NOTHING, but if you put xy.apk in ...rom-apk\xy.apk - it should be fine.
saturatorZmode - use zip\rar for repacking apk,in this mode you can processed ALL APK,MTZ....and everything is packed with zip , and there is NO limitation in path to apk.
Download V1.0
http://www.multiupload.com/FNF7W4ALWY
Download v1.1
http://www.multiupload.com/ZQ4CNZMDCY
I hope our devs use this app !!!
I realy never go back on non resaturated rom - because it looks great!.You can trie it by yourself and see how much diferent between non and resaturated roms,apps,pics.If you don`t see a diferent - you are blind!!!
Will be force with you.
Enjoy!
Sorry for my bad english.
For moders - because this app is relevant to nand rom`s ,i decide to create thread in nand section.Please don`t move it.
---------- Post added at 07:04 AM ---------- Previous post was at 07:03 AM ----------
Changelog
04.10.2011 - V 1.2
Fixed - Images quality.Now 100% quality only.
30.09.2011 - V 1.1
Added - Iconer
Added - Zipalign
Added - rom-apk dir checking for compability apktool and zip mode
Added - new GUI
Fixed - x64 Support
and something i don`t remember
19.09.2011 - initial release.
This is awesome!
i seen you theme in 4pda =)
May i use you program in Mac Os X? or it work only in phone?
this app for windows only
bad, but its the way for Saturator 2. Work without pc
Please set an example
I'm gonna try this on my own rom port.
Will report back (I hope) tomorrow.
hi, thanks!
trying now.
what is the difference
SaturatorAmode
SaturatorZmode
???
Thanks!
dorimanx said:
hi, thanks!
trying now.
what is the difference
SaturatorAmode
SaturatorZmode
???
Thanks!
Click to expand...
Click to collapse
As far as i can see
SaturatorA is for APK files
SaturatorZ is for ZIP files
This is awesome! That **** is crazy!
I was just going to try this out but discovered the following problem:
I've pushed the whole system/apps/ folder to rom-apk dir and executed SaturatorZmode.
The .apk files now in "saturated" folder arent .apk files anymore, but folders named as XYZ.apk see here:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Installed a CM7 Theme whose images I have resaturated => bootloop ...
How to fix this bootloop?
Flash a new framework.res?
D3LTA said:
As far as i can see
SaturatorA is for APK files
SaturatorZ is for ZIP files
Click to expand...
Click to collapse
oh! this is nice.
but warning! do not use it on framework on systemui
only on standart apps, not critical system apps.
or damage to ROM will accure.
Sent from my HD2
D3LTA said:
As far as i can see
SaturatorA is for APK files
SaturatorZ is for ZIP files
Click to expand...
Click to collapse
NO NO NO, SaturatorA use apktool for repacking apk,SaturatorZ use zip\rar for repacking apk.
dorimanx said:
oh! this is nice.
but warning! do not use it on framework on systemui
only on standart apps, not critical system apps.
or damage to ROM will accure.
Sent from my HD2
Click to expand...
Click to collapse
This is NOT true, you can safely proccessed framework-res.Right now i am tried 5 rom`s in zip mode and there is NO problem with framework.Only do not touch bootscreen.
you want example? ok.
I do not have permissions from langtang , but i think he will be not gainst about this (if so i remove it ):
This rom MIUI v27.1 from langtang
I`ve do not any changes in this rom, i`am use z mode on this rom with saturation=1.6 ONLY.
ok.here we go:
download:
http://narod.ru/disk/25283464001/TWeakos_MIUI_GINGER_RS_V27.1_MAGLDR.zip.html
and some themes (mtz)
honeycomb and slatesense
http://narod.ru/disk/25283607001/HoneyComb_SlateSense_RS.7z.html
and some screenshots:
I am on this rom about 1 week and i have NO problem trie it maybe you like it
---------- Post added at 03:26 AM ---------- Previous post was at 02:47 AM ----------
Tak3r07 said:
This is awesome! That **** is crazy!
I was just going to try this out but discovered the following problem:
I've pushed the whole system/apps/ folder to rom-apk dir and executed SaturatorZmode.
The .apk files now in "saturated" folder arent .apk files anymore, but folders named as XYZ.apk see here:
Installed a CM7 Theme whose images I have resaturated => bootloop ...
How to fix this bootloop?
Flash a new framework.res?
Click to expand...
Click to collapse
you need grab apk files back from rom-apk dir and replace it in original rom.if you do all exactly how on video tutorial you have no problem with this.
If you want resaturate some cm7 theme:
place your apk theme file in rom-apk dir, next start saturatoramode (apktool) and wait untill its finished.grab your new theme from rom-apk dir.install.enjoy.
for example:
this is a mixer theme you can find original thread in android themes forum, it is sense like theme.
download
http://www.multiupload.com/R6IZA40LT4
again - i do not any changes in this apk , there is only resaturated images.
it is working great! trie it.
tweakos said:
you need grab apk files back from rom-apk dir and replace it in original rom.if you do all exactly how on video tutorial you have no problem with this.
If you want resaturate some cm7 theme:
place your apk theme file in rom-apk dir, next start saturatoramode (apktool) and wait untill its finished.grab your new theme from rom-apk dir.install.enjoy.
for example:
this is a mixer theme you can find original thread in android themes forum, it is sense like theme.
download
http://www.multiupload.com/R6IZA40LT4
again - i do not any changes in this apk , there is only resaturated images.
it is working great! trie it.
Click to expand...
Click to collapse
I would have grabbed them from rom-apk dir, but this one was empty! I've watched the whole video and in your video the rom-apk dir isnt empty, while doing the same steps as i did...
Sent from my HTC HD2 using XDA Premium App
What mode do you use? If you use saturatorAmode you need to place apk files in rom-apk dir WITHOUT subfolders , example - if you put xy.apk in ...rom-apk\app\xy.apk - YOU get NOTHING, but if you put xy.apk in ...rom-apk\xy.apk - it should be fine.
saturatorZmode do not have this limitation, you can place your files with subfolders like a ..rom-apk\app\xy.apk.
tweakos said:
What mode do you use? If you use saturatorAmode you need to place apk files in rom-apk dir WITHOUT subfolders , example - if you put xy.apk in ...rom-apk\app\xy.apk - YOU get NOTHING, but if you put xy.apk in ...rom-apk\xy.apk - it should be fine.
saturatorZmode do not have this limitation, you can place your files with subfolders like a ..rom-apk\app\xy.apk.
Click to expand...
Click to collapse
I have tried both without subdirs.
Sent from my HTC HD2 using XDA Premium App
What version of windows? Are you have java sdk installed?
Oh....i think i know what is the problem(maybe),on your screenshot you have path this contain 2 saturator folder,just place saturator folder on root of your hard drive and that`s it.
First of thanks for your contribution and making our lives easier.
I have tried to use your app without succes, as mentioned in previous posts all seems to go well but just like others i end up with all apk`s extracted in the saturated folder and the rom-apk folder is empty. Would it be possible this is because of Windows 7 64?
Edit: in SaturatorAmode things seem to work, however when i repack the build with changed apk`s i start missing a lot of apps in the build. The SaturatorZmode doesn't seem to work at all leaving extracted apk files in the saturated folder.
Any way to resaturate a NAND backup that we can then restore so we don't need to reinstall everything?
my wallpaper before and after
thanks a lot! Flashing tytungs nexus rom saturated ;D hope it works
Edit:
Bootloop, damn it
Saturatorzmode... Doesn't do another ng it just stays a extracting for hours.... And when I use SaturatorAmode each and every of my all file goes missing.... What am I doing wrong please help me out?? ... Only way to enhance my pics is to copy the pics it self
Sent from my HTC HD2 using XDA App
So friends, here is a quick and easy guide for changing the status bar icons of your Gingerbread(Actually any phone )
For those who don't know how to do it(for anyone actually :highfive
Theory
Android is the awesome platform which is easily configurable and is able of being edited very easily
The icons used in every app and Android framework are located as png images in apk of those respective apps in location:-
*.apk/res/drawable-mdpi (in my case, as our phone is mdpi)
So, we can change any icon of our status bar like battery, signal, (not clock[clock is to be configures in SystemUI.apk{will post how to change it shortly}]), etc by editing png's in framework-res.apk
Not even that, you can edit images of any app as I told you
There are several ways to decompile and compile apk in which we have made change
If we want full access of apk and want to change every thing like the xml's in it and smali content in jar files, then we would have to do it on computer by apktool or apkmanager
But, we are here to only change image, so we would not go in detail of apktool or apkmanager. For changing images, that can be very easily done even on the phone by an app NinjaMorph that is made for developers by our senior head and DEVELOPING LEGEND Stephen(Stericson)
But be careful as backing up the original file if you do something wrong
And as you all know any developer or even a newbie posting something interesting that you want to try WILL NOT BE RESPONSIBLE for your mobile blowing up, resting in peace, sleeping like a dead, behaving like a non-living BRICK, or anything whatsoever that may or may not happen to phone in this universe or any other universe known or unknown
What to do if anything happened to my mobile
We have had a backup of your original file so we can restore it
But if while editing the system files like framework-res.apk
If you deleted some un-backed up apk's
Well you can always have backup of your ROM and that is why Koushik Datta has made clockworkmod Recovery
You can restore your ROM from there
Pre-Requisites
Patience
Mind
A Android (A spare one if you brick your phone, just kidding)
Root access(to change the apk)
NinjaMorph(http://bit.ly/ninjamorph)
Root Explorer(Optional)(http://bit.ly/stericson)
GUIDE
So Let's Start
Download NinjaMorph. Install it and give it root access. It will prompt for starting checks. Click on start checks.
Now you would have three options, namely, New Project, Finish Project, Existing Project
Click on new project. Go to system/framework/ and click on framework-res.apk. It will start extracting files
Once it has extracted all the files, it will open to show you what is inside framework-res.apk.
Exit it and go to your file explorer.
Go to /sdcard/AndroidThemes/workspace/framework-resapk
This is what is inside apk. Go to res/drawable-mdpi folder
There you will see hundreds of icons of your menu, lockscreen, battery, signal, and everything
You can edit them and replace them as you want. But the name of the file you are replacing and size and dimension must be equal to the file you are replacing with(I recommend Googling and finding icons of battery, signal, and other things)[I have even used hdpi icons, there was no problem]
If you download a theme file which is to be flashed in recovery that is not for your phone, no problem, extract the zip and place its framework-res.apk in your sdcard and extract the apk with Ninjamorph. Replace your icons with its icons and TADA
After you have done replacing the icons and you are satisfied(I am never)
Go to NinjaMorph. Click on Fininsh Projects. Click on framework-resapk. It will recompile and ask to replace the original apk with modded one. Click OK
Then it will ask if you want to remove the completed project, Say No(As you would need it if something gets wrong)
Reboot your phone
Maximum chances are that your icons will be replaced. Rare cases have their status bar gone or no change, if so:-
Download(Buy) Root Explorer. Go to /sdcard/AndroidThemes/workspace,
There you will see framework-res.apk. Copy it and go to /system/framework
Mount as R/W
Paste the apk. If it asks that file already exists, overwrite it.
SET PERMISSIONS
Long click on framework-res.apk and click on permissions
You will see three columns
Read Write Execute
You have to set them in the following way
x means you have to tick it
blank means uncheck
Read Write Execute
.....x........x.................
.....x...........................
.....x...........................
Click OK
You will see it as rw-r--r--
Reboot
Do it over again if nothing happens
Enjoy
This way you can edit not only framework-res.apk but any apk
Treat
This section is different from the thread topic
I: Faking Up
Want to make your device show Jelly Bean in About Phone
Go to Root Explorer
Go to /system
Long click on build.prop
Click on Open in a Text Editor
Change the files as
ro.build.display.id=Jelly Bean
ro.build.version.release=4.1.4
Save Changes
Reboot
II: Easter Egg
You all must know that an image of GingerBread Zombie comes up when you repeatedly click on Android Version in Setting>About Phone
Wanna change it to look like Jelly Bean?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Extract framework-res.apk
Go to res/drawable-nodpi
You will see platlogo.jpg
Replace it with the file in attachment
Recompile
Reboot
Troubleshooting
Will find and update it
Tell me what problems are you having
Nice guide. How to change color of clock in gingerbread because white is ugly? Maybe you can add that in future.
Verstuurd van mijn GT-S5660
FlemishDroid said:
Nice guide. How to change color of clock in gingerbread because white is ugly? Maybe you can add that in future.
Verstuurd van mijn GT-S5660
Click to expand...
Click to collapse
Yes
It is a tedious process
By editing smali files of classes.dex of SystemUI.apk
BUMP
which file do you you need for notificationbar background???
jkoetsier said:
which file do you you need for notificationbar background???
Click to expand...
Click to collapse
Add @amdroid:background @ frawable/statbarbg
In statusbar tracking.xml
Then add statbarbg.png in drawable-mdpi
For gb clock u need to do smali
Devilsking has made good guide
Sent from my ST25i using xda app-developers app
Thanks man, its working!!
Sent from my GT-S5660 using xda premium
SpaceCaker said:
Add @amdroid:background @ frawable/statbarbg
In statusbar tracking.xml
Then add statbarbg.png in drawable-mdpi
For gb clock u need to do smali
Devilsking has made good guide
Sent from my ST25i using xda app-developers app
Click to expand...
Click to collapse
*android
BUMP
BUMP
BUMPS are unneeded, if theres nothing to say, dont do it.
Sent from my GT-S5660 using xda app-developers app
Bigger PNG's
Quick question, I know this is an old topic, but upon googling I found this and I feel that my question sort of belongs here. Not even sure if OP is still around to look at this thread, but here goes:
I swapped out a png image for the statusbar icon of an app called CoolSymbols (not using this guide, but using APK Multi tool, but I imagine that the png sizes will have to be the same). Now, this app had a quite ugly statusbar icon, with jagged edges. I replaced it by a circle icon. This circle is pretty much the same size as the previous icon, so the icon looks jagged as well.
Here is the question: Do I simply make a bigger png image, so it will get cropped <---- doubt this
or do I create another folder like res/drawable-hdpi, but for xxhdpi (drawable-xxhdpi???), and if so will that fix the problem, or will I also have to point to that folder somewhere in another file <--- probably the way to go
I hope someone can help me out here!
(PS: I hope my issue is clear from the text above, I don't have a possibility to post proper screenshots until tomorrow, but they will be provided if needed)
(Also I'm sorry if there may have been a more recent topic about this, then I totally missed this!)
JaySilverMusiq said:
Quick question, I know this is an old topic, but upon googling I found this and I feel that my question sort of belongs here. Not even sure if OP is still around to look at this thread, but here goes:
I swapped out a png image for the statusbar icon of an app called CoolSymbols (not using this guide, but using APK Multi tool, but I imagine that the png sizes will have to be the same). Now, this app had a quite ugly statusbar icon, with jagged edges. I replaced it by a circle icon. This circle is pretty much the same size as the previous icon, so the icon looks jagged as well.
Here is the question: Do I simply make a bigger png image, so it will get cropped <---- doubt this
or do I create another folder like res/drawable-hdpi, but for xxhdpi (drawable-xxhdpi???), and if so will that fix the problem, or will I also have to point to that folder somewhere in another file <--- probably the way to go
I hope someone can help me out here!
(PS: I hope my issue is clear from the text above, I don't have a possibility to post proper screenshots until tomorrow, but they will be provided if needed)
(Also I'm sorry if there may have been a more recent topic about this, then I totally missed this!)
Click to expand...
Click to collapse
You need to create an image of correct pixels according to your phone's dpi
Have a look here - http://developer.android.com/design/style/iconography.html
Hi Everyone,
i saw the White Themed Cataclysm thread and i fell in love with the white stuff (actually i was already in love with it since my Xperia) and i couldn't rest until i managed to theme it for myself.
Settings app
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Instructions:
just flash the zip with recovery. make sure to make a backup before flashing.
if you are on odexed rom, not to worry, i'm on odex as well, but i deodexed the settings.apk, so just do the same thing and make sure you delete your settings.odex file (make a copy of that, too, in case you wanna go back, you'll need it).
Old instructions:
attached you can find the apk file. just download, unzip and copy it over with any file manager (that can write the system folder), set persmissions (644), reboot and you're good to go.
make sure to backup the original apk.
the settings apk is located in system/priv-app/ folder.
Change log:
v.1.3
- otional: nexus image added to about section.
v1.2
- white "remove launcher" icon fixed
- white "add account" icon fixed
v1.1
- fixed printer icon
Download:
v1.3 (optional)
v1.2
Old downloads:
v1.1 with fixed printer icon (change made in the framework-res.apk file, therefore the flashable zip added).
View attachment Settings.zip
Known bugs:
- printer icon is white on settings, i can't find that effin icon, if you point me to the right direction, i'll fix the issue asap.
- white "add account" icon on white background - thanks to Desno365 for the help
- white "delete launcher" icon on white background - just replaced the icon, so let me know if this causes any issues
- white google account privacy settings
GrayScaled Settings
The only difference to white settings it that the icons and the text is gray (holo gray), the switch is changed to white with black text.
Download:
v1.0
GoogleDialer app
i changed the dialpad numbers to white background with black text
(screenshot is blurred on some parts due to the privacy of the contacts)
Change log:
v.1.1
- black dialer action bar at the bottom is fixed now
v.1.0 - Initial version
Download:
v1.1
Mirror: v.1.1
Old downloads:
v1.0
Known bugs:
- action bar with open dialpad is black (doesn't wanna change for some reason :S)
Metro Blu Theme
This theme is based on white settings mod but i recolored basically everything, all holo blue supposed to be metro blu(e). There might be some leftovers
Instructions:
just flash the zip with recovery. make sure to make a backup before flashing.
Change log:
v1.1
- initial version
Download:
v1.0
Mirror: v1.0
Old downloads:
-
Known bugs:
- you tell me
Red! Theme
this is a beta and it does NOT contain the settings app, so you have to flash that individually.
Screenshots:
Instructions:
flash white settings first, doesn't really matter which one but i recommend to use the grayscaled version (unless you have any of them already flashed), then flash the Red! theme. it's important to flash Red! last, since with the other mods, you overwrite the framework and you lose the red theme.
If you are on odexed rom and haven't used any mods for Settings.apk & SystemUI.apk, then make sure the delete the .odex files for these two apps from system\priv-app folder!
Change log:
beta 1
- first release for testing but surely can be used as daily driver, there are some minor bugs though.
Download:
Beta 1
====================================================================================================
I don't like this mod, take me back to the original!
Revert Zips - thanks to 22sl22
Get them here: http://d-h.st/users/22sl22/?fld_id=31862#files
This is odexed stock but if you are running deodex just delete the odex (from the zip).
Clear cache/dalvik is recommended
Flash away & Enjoy
====================================================================================================
Disclaimer:
THIS IS FOR 4.4.2 STOCK - but might work on older/other 4.4 roms as well. Do this on your own risk, i'm not responsible for any damage you do by applying this mod. CREATE A BACKUP before flashing!
if you like these themes, feel free to buy me a beer (though i don't drink beer )
Credit:
i wouldn't have been able to do this without this tutorial here (for xperia devices). thanks a lot to funky0308 for it!
I'd like to say thanks to Desno365 as well for the help.
A big thanks flies out to alen1901 as well for his help!
donjamal said:
Known bugs:
- printer icon is white on settings, i can't find that effin icon, if you point me to the right direction, i'll fix the issue asap.
Click to expand...
Click to collapse
Try to change "res/drawable-xhdpi/ic_grayedout_printer.png"
Desno365 said:
Try to change "res/drawable-xhdpi/ic_grayedout_printer.png"
Click to expand...
Click to collapse
was thinking about that, but that icon is actually gray and not white as it is in the app itself... :-S
donjamal said:
was thinking about that, but that icon is actually gray and not white as it is in the app itself... :-S
Click to expand...
Click to collapse
If you have used apktool go in "res/xml/settings _ headers.xml" to find out what icon uses, but I think it's this icon because there aren't others printing icons
Desno365 said:
If you have used apktool go in "res/xml/settings _ headers.xml" to find out what icon uses, but I think it's this icon because there aren't others printing icons
Click to expand...
Click to collapse
thanks, it's in the fw: @*android:drawable/ic_print.
Fix added for printer
Sent from the outer space, delivered by an android using a nexus 4
donjamal said:
Hi Everyone,
i saw the White Themed Cataclysm thread and i fell in love with the white settings.apk (actually i was already in love with it since my Xperia) and i couldn't rest until i managed to theme it for myself.
View attachment 2487592
attached you can find the apk file. just download, unzip and copy it over with any file manager (that can write the system folder), set persmissions (644), reboot and you're good to go.
make sure to backup the original apk. if you are on odexed rom, not to worry, i'm on odex as well, but i deodexed the settings.apk, so just do the same thing and make sure you delete your settings.odex file (make a copy of that, too, in case you wanna go back, you'll need it).
the settings apk is located in system/priv-app/ folder.
Updates:
v1.1
- fixed printer icon
Download:
flashable zip with fixed printer icon (change made in the framework-res.apk file, therefore the flashable zip added):
Old download:
View attachment 2487605
Known bugs:
- printer icon is white on settings, i can't find that effin icon, if you point me to the right direction, i'll fix the issue asap.
- white "add account" icon on white background
Disclaimer:
THIS IS FOR 4.4.2 STOCK - but might work on older/other 4.4 roms as well. Do this on your own risk, i'm not responsible for any damage you do by applying this mod.
Credit:
i wouldn't have been able to do this without this tutorial here (for xperia devices). thanks a lot to funky0308 for it!
Click to expand...
Click to collapse
hi i'm having problems with my default settings app.
i just have rooted my nexus 4 and changed the default font and i forgot to creat a backup...and now i can't open the Settings.
with this mod the settings app will be fixed?what do u think?and what program should i use to move the folder to the system?
thanks in advance.
Can you change "add account" and home pngs? They are white on white so it's not possible to see them well
Desno365 said:
Can you change "add account" and home pngs? They are white on white so it's not possible to see them well
Click to expand...
Click to collapse
i tried to change the add account image in the xml, but doesn't seem to have effect for some reason - i can't understand though why, the png is there and it did change for the first time :S if i change the png, i'm afraid, i'll screw up something else...
for the bins on the home settings, i'll look into it, didn't check that before, sorry
ps: i guess i figured what the problem is: whenever i change the settings_header.xml, it seems, it doesn't change when i recompile the apk and therefore those 2 icons are not getting changed, even though i do the edit. :S strange.
Donjamal, I noticed another thing that need to be changed
Look at the picture
Desno365 said:
Donjamal, I noticed another thing that need to be changed
Look at the picture
Click to expand...
Click to collapse
thanks for the report. i don't think though that's in settings.apk. but i might be wrong. any help is appreciated - i'm stuck with the other 2 as well... :S
xtkdarkrider said:
hi i'm having problems with my default settings app.
i just have rooted my nexus 4 and changed the default font and i forgot to creat a backup...and now i can't open the Settings.
with this mod the settings app will be fixed?what do u think?and what program should i use to move the folder to the system?
thanks in advance.
Click to expand...
Click to collapse
hi,
i used root explorer to move it around but if you have recovery, i suggest to flash the newer version.
if you changed the font, i don't think, this will have any effect on that. you might have to wipe dalvik & cache.
donjamal said:
ps: i guess i figured what the problem is: whenever i change the settings_header.xml, it seems, it doesn't change when i recompile the apk and therefore those 2 icons are not getting changed, even though i do the edit. :S strange.
Click to expand...
Click to collapse
Really strange, maybe it's a problem with apktool?
Desno365 said:
Really strange, maybe it's a problem with apktool?
Click to expand...
Click to collapse
don't know, possible of course though. i tried it several times now and still no effect. i can even add new png resources and stuff, but it doesn't change anything in the xml :S
i just decompiled the apk and it's there now but it still doesn't change in the apk itself. i guess then it might be smali.
for the add account icon, this is what i change:
<header android:icon="@drawable/ic_menu_add_light" android:id="@id/account_add" android:title="@string/add_account_label">
<intent android:action="android.settings.ADD_ACCOUNT_SETTINGS" />
</header>
donjamal said:
don't know, possible of course though. i tried it several times now and still no effect. i can even add new png resources and stuff, but it doesn't change anything in the xml :S
Click to expand...
Click to collapse
If you want I can try to do this for you and then send the file for PM
Why the link for flashable zip redirects to Facebook?
Desno365 said:
If you want I can try to do this for you and then send the file for PM
Why the link for flashable zip redirects to Facebook?
Click to expand...
Click to collapse
to facebook? ah, sh!t, i copied it from facebook (i sent the link to myself from my phone ), fixing it asap
yeah, just go ahead. anything you can do. let me know if you need any resources or anything or is the zip enough.
Unfortunately not working with Purity ROM I've been looking for such mod for a long time but don't want to change rom.
When I extract the settings.apk to system/priv-app settings won't open... It just happens nothing. When I flash the flashable zip via CWM I get a bootloop. What a shame... I really like this mod!
Sent from my Nexus 4 using xda app-developers app
MTimo said:
Unfortunately not working with Purity ROM I've been looking for such mod for a long time but don't want to change rom.
When I extract the settings.apk to system/priv-app settings won't open... It just happens nothing. When I flash the flashable zip via CWM I get a bootloop. What a shame... I really like this mod!
Sent from my Nexus 4 using xda app-developers app
Click to expand...
Click to collapse
For the manual install, make sure to set permissions and reboot as well.
Sent from the outer space, delivered by an android using a nexus 4
donjamal said:
For the manual install, make sure to set permissions and reboot as well.
Sent from the outer space, delivered by an android using a nexus 4
Click to expand...
Click to collapse
Sorry, forgot to mention... Permissions set and rebooted as well!
After replacing the backed up settings.apk the Problem remained. Fixed it with reflashing the rom. Weird...
Sent from my Nexus 4 using xda app-developers app
MTimo said:
Sorry, forgot to mention... Permissions set and rebooted as well!
After replacing the backed up settings.apk the Problem remained. Fixed it with reflashing the rom. Weird...
Sent from my Nexus 4 using xda app-developers app
Click to expand...
Click to collapse
then my best guess it's the rom that you are using.
This is in place until TWRP is ready. You need root and of course you need to be attached to your PC. On first installation of systemui base, a pop-up asking to give ADB shell root permission will show. Please do so.
The purpose of this installer is to generate for you a custom module that you can flash in Magisk Manager. It will have all the mods that you have selected from the installer menu.
Custom clocks (date, etc) and internet speed indicators do not change colors due to light-dark background colors like the statusbar icons do.
The developer of Active edge gave me permission to use his base so that people would not have to make a choice between his and my mods. All credit for this goes to him. You must delete the active edge sense module and use one of my active edge modules. If it doesn't say active edge then it isn't active edge sense compatible. If there is an issue with edge sense after flashing, do not contact edge sense op with issues. He does not troubleshoot modified versions of his mod (and neither do I).
I'm also including my Pixel Launcher mod. Also a ADB Installer. You can change app drawer background-text color (separately for light mode and dark mode), remove weather from Launcher. Change the number of hot seat icons on home page (and size) as well as change the number of columns in the app drawer.
ADB Installer Instructions-Root is required
1. Flash one of the SystemUI Bases First. They provide the necessary smali files and public ID's for everything to work. Use colorable bases if you want to be able to change QS circle colors.
2. FLASH ALL THE MODS YOU WANT. ONCE YOU DONE WITH EVERYTHING, FLASH THE "COMPLETE INSTALLATION" Option. This will create a Magisk Manager flashable zip in a folder on your sdcard called ozop. Flash that to install your selection of mods.
Root required
Instructions.
1. Unzip ADB Mods Installer Files.zip on your PC
2. Run TulsadiverModsInstaller.bat (Give ADB Root Permissions)
3. ADB debugging Enabled
4. Flash one of the SystemUI Bases First. They provide the necessary smali files and public ID's for everything to work
5. Go through the other options selecting what all mods you want. It is generally best to start at the top and work your way down.
6. Once finished with selections, run "Complete Installation" at the bottom. This will generate your mymagisk.zip module in a folder called "ozop" on your sdcard.
Includes powershell installer, one for windows, one for linux.
List of MODS Available
Clock Format and Position Mods
Internet Traffic Speed Single Indicator (changes from upload-download) otherwise signals are over/under
Choose Traffic Speed Indicator Up-Down Icon Colors (default is white)
Navbar Height Options
Navbar Swap
Remove NavBar
3 Minit Battery
One percent custom battery Mods-Several to choose from
One percent custom battery Text-only-Several to choose from
Colored Statusbar-Navbar Icons
Choose number of QS columns 3-7
Colored Statusbar Icons
Remove Carrier Text Options
Smaller LTE Icon
Custom Battery Sizes in case custom batteries are too large or too small
Change QS pulldown circle color
Change Status bar and QS WiFi and Data Icons
Note Added a couple of wifi and data signal options.
WiFi 1 and Cell Tower 1
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
WiFi 2 Cell Tower 2
WiFi 3 data 3
Android 12 Beta 1 uploaded 5-31-21
ADB Mod Installer Files12Pixel3XL.zip | by Tulsadiver for Pixel
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
www.androidfilehost.com
Android 11 uploaded 6-13-21
ADB Mod Installer Files11Pixel3XLJune.zip | by Tulsadiver for Pixel
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
www.androidfilehost.com
------------------------------
If I helped, hit the Thanks Button!
Feeling generous, send me a beer!
-------------------------------
Android 10
ADB Installer uploaded 6-3-20
https://www.androidfilehost.com/?fid=4349826312261825198
--------------------------------------------------------------------------------------
Pixel Launcher Mod
Start by picking a base. Bases come with, or without, a search bar and Hotseat heights The larger number of rows you pick, the lower your hotseat drops on your home screen. If your hotseat comes out too low, try again with a higher base.
Remove Search Bar
App Drawer background color (Light and Dark Mode)
App Drawer Text Color or remove (Light and Dark Mode)
Home screen App Text Color
Smart-screen Text color
App Icon Sizes 45-50-56 dip (56 is stock)
Columns (5-6-7)
Rows (5 through 11)
ADB Pixel Launcher Installer uploaded 6-10-21
NexusLauncherReleaseADBPixel4XL.zip | by Tulsadiver for Pixel
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
www.androidfilehost.com
-----------------------------------------------------
TWRP themes for those that like things a little different
A couple of TWRP themes. These were made by G.M.L. and he deserves all the credit. His thread is here:
https://forum.xda-developers.com/android/themes/themes-twrp-theming-links-development-t3598833
I tweaked them to work on the Pixel 3 XL with it's notch and large status bar. Top Shelf and Transparent.
To apply:. Make a folder in your sdcard's TWRP folder called theme. Put one of the themes in the folder and rename it ui.zip. The next time you boot into TWRP it will be there.
Top shelf
https://www.androidfilehost.com/?fid=1395089523397904497
Transparent
https://www.androidfilehost.com/?fid=1395089523397892112
Hey, @Tulsadiver - any plans for the little pixel 3? Would be awesome if so!
-Michael_ said:
Hey, @Tulsadiver - any plans for the little pixel 3? Would be awesome if so!
Click to expand...
Click to collapse
I'm working on it. Would you like to test it?
Tulsadiver said:
I'm working on it. Would you like to test it?
Click to expand...
Click to collapse
Yes, absolutely!
In for results of this P3 (small) test. :]
-Michael_ said:
Yes, absolutely!
Click to expand...
Click to collapse
Here you go!
https://www.androidfilehost.com/?fid=11410932744536985963
w0rdie said:
In for results of this P3 (small) test. :]
Click to expand...
Click to collapse
See post above
I must be doing something wrong... any selection I make only reloads the Selection Menu.
Windows 10
w0rdie said:
I must be doing something wrong... any selection I make only reloads the Selection Menu.
Windows 10
Click to expand...
Click to collapse
I don't have Windows 10 but I wouldn't think that would matter. Do you have root? Do you have adb degugging checked in developers menu? Did you give adb root privileges when you tried to install your first one? A pop-up should have come up.
Tulsadiver said:
I don't have Windows 10 but I wouldn't think that would matter. Do you have root? Do you have adb degugging checked in developers menu? Did you give adb root privileges when you tried to install your first one? A pop-up should have come up.
Click to expand...
Click to collapse
Yeah sending ADB commands is working fine, I didn't get the SU prompt when I ran the .bat but I ran adb shell / su in another terminal to get ADB granted root right.
---------- Post added at 12:34 PM ---------- Previous post was at 12:31 PM ----------
Running it in Powershell (rather than CMDR) worked. Setting it up now.
Thanks!
---------- Post added at 12:54 PM ---------- Previous post was at 12:34 PM ----------
This had to have been so much work -- link to where I can buy you a beer?
It's perfect.
installing systemui base gives me permission denied in the command prompt and trying framework stock-like base i assume doesnt install and doesnt reboot my phone automatically
I don't see left clock... will center clock move it to the left side?
rootisthebest said:
installing systemui base gives me permission denied in the command prompt and trying framework stock-like base i assume doesnt install and doesnt reboot my phone automatically
Click to expand...
Click to collapse
open magisk and go to superuser then select adb shell to set it on
then try agin
w0rdie said:
Yeah sending ADB commands is working fine, I didn't get the SU prompt when I ran the .bat but I ran adb shell / su in another terminal to get ADB granted root right.
---------- Post added at 12:34 PM ---------- Previous post was at 12:31 PM ----------
Running it in Powershell (rather than CMDR) worked. Setting it up now.
Thanks!
---------- Post added at 12:54 PM ---------- Previous post was at 12:34 PM ----------
This had to have been so much work -- link to where I can buy you a beer?
It's perfect.
Click to expand...
Click to collapse
Thanks for testing and figuring out how to work it on Windows 10.
It did take a while to get it going but I've had a ADB base for a while. There are always times in between root and TWRP so I thought it would come in handy. I just had to update a lot of .bat files which was a bit tedious. While I sure do enjoy a beer(s), more than my wife cares for, no need. Hitting the thanks button is plenty fine. I'm sure there are a lot of typos since I put this together as fast as I could.
I'll get this out on the Pixel 3 forum now that I know it is working at least to some extent.
MrGimpGrumble said:
I don't see left clock... will center clock move it to the left side?
Click to expand...
Click to collapse
You are right. I'll get that updated. Center clock will only work with a hidden notch.
Tulsadiver said:
You are right. I'll get that updated. Center clock will only work with a hidden notch.
Click to expand...
Click to collapse
Thanks as always!
Also, I always ask but is there any way to hide the wifi and data icons?
No biggie if not! always appreciate your mods!
MrGimpGrumble said:
Thanks as always!
Also, I always ask but is there any way to hide the wifi and data icons?
No biggie if not! always appreciate your mods!
Click to expand...
Click to collapse
You can try this. Should have left clocks and in the internet traffic menu, an option to remove wifi-data.
https://www.androidfilehost.com/?fid=11410932744536986529
Tulsadiver said:
You can try this. Should have left clocks and in the internet traffic menu, an option to remove wifi-data.
https://www.androidfilehost.com/?fid=11410932744536986529
Click to expand...
Click to collapse
Can you please tell me how to make changes?
So I already flashed both the base and framework... Then I selected 3minit and did a complete install. How do I now change to left clock, no data/wifi icons, and keep 3minit?
Thanks!
MrGimpGrumble said:
Can you please tell me how to make changes?
So I already flashed both the base and framework... Then I selected 3minit and did a complete install. How do I now change to left clock, no data/wifi icons, and keep 3minit?
Thanks!
Click to expand...
Click to collapse
Flash left clock, flash remove wifi-data, flash complete installation.
So here is what I found;
Left clock worked
removing the wifi+data icon worked
when i selected #23 Number of QS Columns --> #4 (6 columns) i end up with a 4 column
There was no remove carrier text for left clock
Just some feedback... thanks again for your hard work!