Homebrew [CtrBootManager] Backgrounds collection (+scripts)

Mythrandir

Life-long Learner
Member
Joined
Nov 12, 2015
Messages
183
Trophies
0
XP
883
Country
United States
Here is my own attempt at a very simple custom top screen background:
new-3dsxl-logo3.png
Here are the screen color, highlight color, border color, and font color settings I use with this custom top screen background:
Code:
    bgTop1 = "000000";
    bgTop2 = "000000";
    bgBottom = "000000";
    highlight = "dcdcdc";
    borders = "ffffff";
    font1 = "ffffff";
    font2 = "000000";

The zip folder includes the image bin file, the image png file, and the image xcf file.
 

Attachments

  • new3dslogo_ctrbm_bckgrd.zip
    29.7 KB · Views: 258

Giever

Active Member
Newcomer
Joined
May 30, 2009
Messages
36
Trophies
1
XP
292
Country
United States
Is there any way to just completely remove the border? It's getting in the way of the theme I'm working on.
 

PKSYHR

Member
Newcomer
Joined
Feb 16, 2016
Messages
12
Trophies
0
XP
80
Country
United States
I made a theme for undertale For thouse of you who play it.
 

Attachments

  • undertale_bottom.png
    undertale_bottom.png
    11.4 KB · Views: 332
  • undertale_top.png
    undertale_top.png
    216 bytes · Views: 287
  • undertaletheme.7z
    133.1 KB · Views: 136

PixelBurst

Well-Known Member
Newcomer
Joined
Feb 2, 2016
Messages
99
Trophies
0
Age
34
XP
109
Country
For those with the N3DS and Pikachu plates with Pikachu theme, matching images for CTR! (.bin's in .zip.)

Also matching MenuHax theme here.

Code:
    theme =
    {
        bgTop1 = "000000";
         bgTop2 = "000000";
        bgBottom = "000000";
        highlight = "dcdcdc";
        borders = "000000";
        font1 = "000000";
        font2 = "000000"; // selection
        bgImgTop = "/top_theme.bin"; // 400x240 pixels
        bgImgBot = "/bot_theme.bin"; // 320x240 pixels
    };
 

Attachments

  • Pikachu.zip
    130.9 KB · Views: 202
  • bot_theme.png
    bot_theme.png
    25.8 KB · Views: 228
  • top_theme.png
    top_theme.png
    28.9 KB · Views: 227

Mandikiri

Princess
Member
Joined
Feb 11, 2016
Messages
351
Trophies
0
Age
32
Location
Rainbow Land
XP
1,625
Country
United States
I have done everything possible to get the themes showing. But for some reason I cannot get them to show. Here is how I have the boot.CFG setup. Anyone mind telling me what I am doing wrong?
Code:
boot_config :
{
  timeout = 3;
  autobootfix = 8;
  recovery = 2;
  default = 0;
  entries = (
    {
      title = "ReiNand";
      path = "/ReiNand.dat";
      offset = "0x12000";
    },
    {
      title = "rxTools";
      path = "/rxTools/sys/code.bin";
      offset = "0x12000";
      key = 0;
    },
    {
      title = "HomeBrewMenu";
      path = "/boot_hb.3dsx";
    },
    {
      title = "Reboot";
      path = "reboot";
    },
    {
      title = "Shutdown";
      path = "shutdown";
    } );
  theme :
  {
    bgTop1 = "4a0031";
    bgTop2 = "6f0149";
    bgBottom = "6f0149";
    highlight = "dcdcdc";
    borders = "ffffff";
    font1 = "ffffff";
    font2 = "000000";
    bgImgTop = "/xThemes/SexyPeach/top.bin";
    bgImgBot = "/xThemes/SexyPeach/bot.bin";
  };
};
 

Mandikiri

Princess
Member
Joined
Feb 11, 2016
Messages
351
Trophies
0
Age
32
Location
Rainbow Land
XP
1,625
Country
United States
Change to:
Code:
theme =
{
Change to:
Code:
theme =
{

Thank you for taking the time of replying to me. I changed it to how you asked me, but I still don't get any themes for some reason. I have it set up this way now.

Code:
// Boot menu configuration
boot_config =
{
    // Default timeout in seconds
    // If timeout = -1, disable autoboot
    timeout = 3;

    // Some devices (n3ds?) seems to have
    // some timing problems when using timeout=0 (autoboot).
    // You may increase this value to improve boot success rate.
    // Default delay (8) should be good for o3ds, 2 seems good for n3ds
    autobootfix = 8;

    // if timeout = 0 (autoboot),
    // hold this key to enter the menu
    // keycode list : https://goo.gl/4XLDIL
    recovery = 2; // SELECT

    // Default boot entry
    default = 0;

    // Boot menu entries (11 max)
    entries =
    (
        {
            title = "ReiNand";
            path = "/ReiNand.dat";
            offset = "0x12000";
        },
        {
            title  = "rxTools";
            path = "/rxTools/sys/code.bin";
            offset = "0x12000";
            key = 0; // key to override default boot entry (A)
        },
        {
            title  = "HomeBrewMenu";
            path = "/boot_hb.3dsx";
        },
        {
            title  = "Reboot";
            path = "reboot"; // magic path for reboot, do not change
        },
        {
            title  = "Shutdown";
            path = "shutdown"; // magic path for poweroff, do not change
        }
    );

    // RGB colors
    theme =
    {
        bgTop1 = "000000";
        bgTop2 = "000000";
        bgBottom = "000000";
        highlight = "C40000";
        borders = "FFFFFF";
        font1 = "FFFFFF";
        font2 = "FFFFFF";
        bgImgTop = "/xThemes/SexyPeach/top.bin";
        bgImgBot = "/xThemes/SexyPeach/bot.bin";
    };
};
 

Sachi

Well-Known Member
Member
Joined
Jan 13, 2016
Messages
248
Trophies
0
XP
210
Country
United States
Thank you for taking the time of replying to me. I changed it to how you asked me, but I still don't get any themes for some reason. I have it set up this way now.

Code:
// Boot menu configuration
boot_config =
{
    // Default timeout in seconds
    // If timeout = -1, disable autoboot
    timeout = 3;

    // Some devices (n3ds?) seems to have
    // some timing problems when using timeout=0 (autoboot).
    // You may increase this value to improve boot success rate.
    // Default delay (8) should be good for o3ds, 2 seems good for n3ds
    autobootfix = 8;

    // if timeout = 0 (autoboot),
    // hold this key to enter the menu
    // keycode list : https://goo.gl/4XLDIL
    recovery = 2; // SELECT

    // Default boot entry
    default = 0;

    // Boot menu entries (11 max)
    entries =
    (
        {
            title = "ReiNand";
            path = "/ReiNand.dat";
            offset = "0x12000";
        },
        {
            title  = "rxTools";
            path = "/rxTools/sys/code.bin";
            offset = "0x12000";
            key = 0; // key to override default boot entry (A)
        },
        {
            title  = "HomeBrewMenu";
            path = "/boot_hb.3dsx";
        },
        {
            title  = "Reboot";
            path = "reboot"; // magic path for reboot, do not change
        },
        {
            title  = "Shutdown";
            path = "shutdown"; // magic path for poweroff, do not change
        }
    );

    // RGB colors
    theme =
    {
        bgTop1 = "000000";
        bgTop2 = "000000";
        bgBottom = "000000";
        highlight = "C40000";
        borders = "FFFFFF";
        font1 = "FFFFFF";
        font2 = "FFFFFF";
        bgImgTop = "/xThemes/SexyPeach/top.bin";
        bgImgBot = "/xThemes/SexyPeach/bot.bin";
    };
};
Take the theme out of boot_config
 

Sachi

Well-Known Member
Member
Joined
Jan 13, 2016
Messages
248
Trophies
0
XP
210
Country
United States
When you say take the theme out. Do you mean the word "theme" or the "/xThemes/"?

Sorry if I am not grasping it properly. First time trying to do this and I've been pretty much at it for the past hour. :l
Code:
    // RGB colors
    theme =
    {
        bgTop1 = "000000";
        bgTop2 = "000000";
        bgBottom = "000000";
        highlight = "C40000";
        borders = "FFFFFF";
        font1 = "FFFFFF";
        font2 = "FFFFFF";
        bgImgTop = "/xThemes/SexyPeach/top.bin";
        bgImgBot = "/xThemes/SexyPeach/bot.bin";
    };

// Boot menu configuration
boot_config =
{
    // Default timeout in seconds
    // If timeout = -1, disable autoboot
    timeout = 3;

    // Some devices (n3ds?) seems to have
    // some timing problems when using timeout=0 (autoboot).
    // You may increase this value to improve boot success rate.
    // Default delay (8) should be good for o3ds, 2 seems good for n3ds
    autobootfix = 8;

    // if timeout = 0 (autoboot),
    // hold this key to enter the menu
    // keycode list : https://goo.gl/4XLDIL
    recovery = 2; // SELECT

    // Default boot entry
    default = 0;

    // Boot menu entries (11 max)
    entries =
    (
        {
            title = "ReiNand";
            path = "/ReiNand.dat";
            offset = "0x12000";
        },
        {
            title  = "rxTools";
            path = "/rxTools/sys/code.bin";
            offset = "0x12000";
            key = 0; // key to override default boot entry (A)
        },
        {
            title  = "HomeBrewMenu";
            path = "/boot_hb.3dsx";
        },
        {
            title  = "Reboot";
            path = "reboot"; // magic path for reboot, do not change
        },
        {
            title  = "Shutdown";
            path = "shutdown"; // magic path for poweroff, do not change
        }
    );
};
 
Last edited by Sachi,

Storm Eagle

Member
Newcomer
Joined
Mar 2, 2016
Messages
21
Trophies
0
Age
26
XP
170
Country
United States
Made a simple Mega Man X theme. Hopefully you guys will enjoy it.
 

Attachments

  • top.png
    top.png
    9.4 KB · Views: 245
  • bottom.png
    bottom.png
    3.8 KB · Views: 219

dronesplitter

Well-Known Member
Member
Joined
Sep 30, 2007
Messages
595
Trophies
0
XP
421
Country
United States
It was not the zelda 2 one, it was the regular zelda one "zelda theme.7z" that gave the warning and then it was deleted by my scanner. I wouldn't doubt it's just a false positive, but it kind of set off the spidey senses, lol.
 
Last edited by dronesplitter,

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Veho @ Veho:
    That's a relief to hear. Do you know what happened?
  • SylverReZ @ SylverReZ:
    @BakerMan, Any idea what happened? I hope that your brother's doing good.
  • BakerMan @ BakerMan:
    Well, from what I've heard from my parents, he had a seizure last night, perhaps an epileptic episode, fucking died, had a near death experience, my dad called the paramedics, they showed up, took him to the hospital, and he woke up covered in tubes, and started complaining.
  • BakerMan @ BakerMan:
    He couldn't eat until after his MRI, when he had a bomb pop.
  • BakerMan @ BakerMan:
    What matters now is that he's doing alright.
  • Veho @ Veho:
    But you still don't know what it was?
  • Veho @ Veho:
    Has he had seizures before?
  • The Real Jdbye @ The Real Jdbye:
    apparently stress can cause seizures, my brother had one during a test once
  • The Real Jdbye @ The Real Jdbye:
    never had one before that, and never had one since
  • Redleviboy123 @ Redleviboy123:
    Question about game texture chanching Do i need an own game id?
  • The Real Jdbye @ The Real Jdbye:
    @Veho for those that want to
    experience being sonic the hedgehog
  • Veho @ Veho:
    Ah, you mean
    furries.
    +1
  • The Real Jdbye @ The Real Jdbye:
    well, sonic fans are a whole separate thing from furries
  • The Real Jdbye @ The Real Jdbye:
    like bronys
  • The Real Jdbye @ The Real Jdbye:
    sonic porn is too weird even for me
  • Dumpflam @ Dumpflam:
    bruh
  • Dumpflam @ Dumpflam:
    guys how do i delete a post
  • The Real Jdbye @ The Real Jdbye:
    you don't
  • The Real Jdbye @ The Real Jdbye:
    you can report it and request deletion
  • BakerMan @ BakerMan:
    Also, no, that was his first time having a seizure, and hopefully the last
    +1
  • K3Nv2 @ K3Nv2:
    Ea play raised priced to $6 a month lol
  • BigOnYa @ BigOnYa:
    Same with uremum, she's now $2 a month
  • K3Nv2 @ K3Nv2:
    Also seizures come and and go they don't have an off switch like that it all depends
    K3Nv2 @ K3Nv2: Also seizures come and and go they don't have an off switch like that it all depends