Page 14 of 26 FirstFirst ... 4121314151624 ... LastLast
Results 131 to 140 of 255

Thread: CM a8.3 Honeycomb Theme [KaskusComb]

  1. [translate]    #131
    Senior Member
    Join Date
    Jul 2010
    Location
    Solo-Indonesia
    Posts
    179

    Default

    Quote Originally Posted by ragtime View Post
    @doles nice theme working great with CM a8.4 thank you
    Am really happy if i can help others

    Sent from my GT-I5700 using Tapatalk
    current state : Spica JG1 + CM a8.3.2 Rom [My minimal Theme with my lockscreen, Mods app, add full date and time in expanded notification] + Yonip CFS v12A plus version [Big Thanks to Banjo0917]

  2. [translate]    #132
    Junior Member
    Join Date
    Sep 2010
    Location
    Poland
    Posts
    19

    Default

    Quote Originally Posted by GunloK View Post
    Few hours ago I used ur theme with cm 8.4, now im back on sgm and after using ur theme's version for sgm I noticed that icons near clock are different. On cm 8.4 they were purple and now grey. Is it just me? I loved the purple ones :/

    update:
    or maybe its because I've got now adwlauncher ?
    any comment ?

    I tried using xml file in spicagen>tweaks and it wrote error with xml file.

  3. [translate]    #133
    Senior Member
    Join Date
    Jul 2010
    Location
    Solo-Indonesia
    Posts
    179

    Default

    Quote Originally Posted by GunloK View Post
    any comment ?

    I tried using xml file in spicagen>tweaks and it wrote error with xml file.
    Thats SGM bug, cant load xml.

    Sent from my GT-I5700 using Tapatalk
    current state : Spica JG1 + CM a8.3.2 Rom [My minimal Theme with my lockscreen, Mods app, add full date and time in expanded notification] + Yonip CFS v12A plus version [Big Thanks to Banjo0917]

  4. [translate]    #134
    Senior Member
    Join Date
    May 2010
    Location
    /dev/null
    Posts
    1,704

    Default

    Quote Originally Posted by doles View Post
    Thats SGM bug, cant load xml.

    Sent from my GT-I5700 using Tapatalk
    but we can change the colors per script while installaing via recovery ... /data/firstboot.sh

    e.g.:
    Code:
    sqlite3 /data/data/com.android.providers.settings/databases/settings.db "BEGIN TRANSACTION;
    	INSERT INTO system (name, value) VALUES ('expanded_widget_buttons', 'toggleWifi|toggleBluetooth|toggleGPS|toggleBrightness|toggleMobileData');
    	INSERT INTO system (name, value) VALUES ('expanded_network_mode', '0');
    	INSERT INTO system (name, value) VALUES ('expanded_brightness_mode', '0');
    	INSERT INTO system (name, value) VALUES ('expanded_screentimeout_mode', '0');
    	INSERT INTO system (name, value) VALUES ('expanded_ring_mode', '0');
    	INSERT INTO system (name, value) VALUES ('lockscreen_style_pref', '1');
    	INSERT INTO system (name, value) VALUES ('statusbar_music_controls', '1');
    	INSERT INTO system (name, value) VALUES ('statusbar_always_music_controls', '0');
    	INSERT INTO system (name, value) VALUES ('lockscreen_music_controls', '1');
    	INSERT INTO system (name, value) VALUES ('lockscreen_always_music_controls', '0');
    	INSERT INTO system (name, value) VALUES ('dpad_music_controls', '0');
    	INSERT INTO system (name, value) VALUES ('battery_percentage_status_icon', '0');
    	INSERT INTO system (name, value) VALUES ('show_status_clock', '1');
    	INSERT INTO system (name, value) VALUES ('show_plmn_sb', '1');
    	INSERT INTO system (name, value) VALUES ('hdpi_battery_alignment', '0');
    	INSERT INTO system (name, value) VALUES ('show_spn_ls', '0');
    	INSERT INTO system (name, value) VALUES ('show_spn_sb', '0');
    	INSERT INTO system (name, value) VALUES ('battery_status_color_title', '-4');
    	INSERT INTO system (name, value) VALUES ('clock_color', '-4');
    	INSERT INTO system (name, value) VALUES ('date_color', '-4');
    	INSERT INTO system (name, value) VALUES ('new_notifications_ticker_color','-4');
    	INSERT INTO system (name, value) VALUES ('notifications_count_color', '-4');
    	INSERT INTO system (name, value) VALUES ('no_notifications_color', '-4');
    	INSERT INTO system (name, value) VALUES ('clear_button_label_color', '-4');
    	INSERT INTO system (name, value) VALUES ('ongoing_notifications_color', '-4');
    	INSERT INTO system (name, value) VALUES ('latest_notifications_color', '-4');
    	INSERT INTO system (name, value) VALUES ('notifications_title_color', '-4');
    	INSERT INTO system (name, value) VALUES ('notifications_text_color', '-4');
    	INSERT INTO system (name, value) VALUES ('notifications_time_color', '-4');
    	INSERT INTO system (name, value) VALUES ('notif_bar_color', '-16777216');
    	INSERT INTO system (name, value) VALUES ('notif_expanded_bar_color', '-15461356');
    	INSERT INTO system (name, value) VALUES ('notif_bar_custom', '1');
    	INSERT INTO system (name, value) VALUES ('notif_expanded_bar_custom', '1');
    	INSERT INTO system (name, value) VALUES ('window_animation_scale', '0.5');
    	INSERT INTO system (name, value) VALUES ('transition_animation_scale', '0.5');
    	INSERT INTO secure (name, value) VALUES ('install_non_market_apps', '1');
    	COMMIT;";
    sqlite3 /data/data/com.android.providers.settings/databases/settings.db "BEGIN TRANSACTION;
    	update secure set value='1' where name='install_non_market_apps';
    	update system set value='0' where name='fancy_ime_animations';
    	update system set value='-4' where name='battery_status_color_title';
    	update system set value='-4' where name='clock_color';
    	update system set value='-4' where name='dbm_color';
    	update system set value='-4' where name='date_color';
    	update system set value='-4' where name='plmn_label_color';
    	update system set value='-4' where name='spn_label_color';
    	update system set value='-4' where name='new_notifications_ticker_color';
    	update system set value='-4' where name='notifications_count_color';
    	update system set value='-4' where name='no_notifications_color';
    	update system set value='-4' where name='clear_button_label_color';
    	update system set value='-4' where name='ongoing_notifications_color';
    	update system set value='-4' where name='latest_notifications_color';
    	update system set value='-4' where name='notifications_title_color';
    	update system set value='-4' where name='notifications_text_color';
    	update system set value='-4' where name='notifications_time_color';
    	update system set value='0' where name='show_status_dbm';
    	update system set value='1' where name='show_plmn_ls';
    	update system set value='-16777216' where name='notif_bar_color';
    	update system set value='-15461356' where name='notif_expanded_bar_color';
    	update system set value='1' where name='notif_bar_custom';
    	update system set value='1' where name='notif_expanded_bar_custom';
    	update system set value='0.5' where name='window_animation_scale';
    	update system set value='0.5' where name='transition_animation_scale';
    	update system set value='1' where name='accelerometer_rotation';
    	update system set value='1' where name='install_non_market_apps';
    	update system set value='toggleWifi|toggleBluetooth|toggleGPS|toggleBrightness|toggleMobileData' where name='expanded_widget_buttons';
    	update system set value='1' where name='lockscreen_style_pref';
    	update system set value='1' where name='statusbar_music_controls';
    	update system set value='0' where name='statusbar_always_music_controls';
    	update system set value='1' where name='lockscreen_music_controls';
    	update system set value='0' where name='lockscreen_always_music_controls';
    	update system set value='0' where name='dpad_music_controls';
    	update system set value='0' where name='battery_percentage_status_icon';
    	update system set value='1' where name='show_status_clock';
    	update system set value='1' where name='show_plmn_sb';
    	update system set value='0' where name='hdpi_battery_alignment';
    	update system set value='0' where name='show_spn_ls';
    	update system set value='0' where name='show_spn_sb';
    	update system set value='0' where name='auto_time';
    	update system set value='0' where name='lock_home_in_memory';
    	update system set value='1' where name='lock_mms_in_memory';
    	update system set value='1' where name='lock_contacts_in_memory';
    	update system set value='1' where name='lock_phone_in_memory';
    	update system set value='1' where name='lock_superuser_in_memory';
    	COMMIT;";

  5. [translate]    #135
    Senior Member
    Join Date
    Aug 2010
    Location
    indonesia. banjarbaru
    Posts
    125

    Thumbs up so great

    i have use this..and so far. this is the best themes i have been use..
    i like it. great work..thankyu doles. salam dari kalsel adroid..

  6. [translate]    #136
    Senior Member
    Join Date
    Jul 2010
    Location
    Solo-Indonesia
    Posts
    179

    Default

    Quote Originally Posted by hadi View Post
    i have use this..and so far. this is the best themes i have been use..
    i like it. great work..thankyu doles. salam dari kalsel adroid..
    :shakehand :maho :ilovekaskus :iloveindonesia

    Sent from my GT-I5700 using Tapatalk
    current state : Spica JG1 + CM a8.3.2 Rom [My minimal Theme with my lockscreen, Mods app, add full date and time in expanded notification] + Yonip CFS v12A plus version [Big Thanks to Banjo0917]

  7. [translate]    #137
    Senior Member
    Join Date
    Jul 2010
    Location
    Solo-Indonesia
    Posts
    179

    Default

    Quote Originally Posted by voku1987 View Post
    but we can change the colors per script while installaing via recovery ... /data/firstboot.sh

    e.g.:
    Code:
    sqlite3 /data/data/com.android.providers.setting
    In SGM cadavre make some error in editing smparts, i think

    Sent from my GT-I5700 using Tapatalk
    current state : Spica JG1 + CM a8.3.2 Rom [My minimal Theme with my lockscreen, Mods app, add full date and time in expanded notification] + Yonip CFS v12A plus version [Big Thanks to Banjo0917]

  8. [translate]    #138
    Senior Member
    Join Date
    Aug 2010
    Location
    indonesia. banjarbaru
    Posts
    125

    Red face my lockcreen

    this my Picture ..1-medium-.jpg

    i use 24bp so cant take screenshoot..
    Attached Thumbnails Attached Thumbnails 2-medium-.jpg  

  9. [translate]    #139
    Senior Member
    Join Date
    Jan 2011
    Location
    Philippines
    Posts
    356

    Default

    Quote Originally Posted by hadi View Post
    this my Picture ..Click image for larger version. 

Name:	1 (Medium).JPG 
Views:	63 
Size:	39.0 KB 
ID:	7033

    i use 24bp so cant take screenshoot..
    Can you share your wallpaper? and how you change your lockscreen button?

  10. [translate]    #140
    Junior Member
    Join Date
    Aug 2010
    Location
    indonesia raya
    Posts
    7

    Default

    dude, how to change the "KaskusComb" text at the top of the lockscreen? not everybody knows what kaskus is.
    great work & thanks...
    Last edited by superstar.wannabe; 04-06-2011 at 07:49 AM.

Page 14 of 26 FirstFirst ... 4121314151624 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •