FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

bad-antics/nullsec-unleash-hell: ๐Ÿ”ฅ NullSec Unleash Hell โ€” Flipper Zero Theme Pack | 10 hellfire animations, 88 frames, demon skulls, pentagrams, chains & fire | Boot + L1-L3 dolphin levels ยท GitHub

Latest commit

ย 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ”ฅ NullSec Unleash Hell โ€” Flipper Zero Theme Pack

A hellfire-themed animation asset pack for Flipper Zero by bad-antics


๐Ÿ‘น What Is This?

Unleash Hell is a complete Flipper Zero animation theme pack featuring hellfire, demon skulls, pentagrams, lightning, chains, and infernal chaos โ€” all rendered in glorious 1-bit 128ร—64 pixel art.

10 animations โ€ข 88 frames โ€ข 3 dolphin levels โ€ข Boot sequence included


๐ŸŽฌ Animations Included

๐Ÿ”ฅ Boot Sequence

Animation Frames Description
NullSec_UnleashHell_Boot_128x64 18 Hellfire rises โ†’ portal opens โ†’ demon skull โ†’ UNLEASH HELL title reveal

โš”๏ธ Level 1 โ€” Initiate (Levels 1โ€“10)

Animation Frames Description
L1_UnleashHell_Hellfire_128x64 8 Rising hellfire with NullSec branding
L1_UnleashHell_Demon_128x64 6 Breathing demon skull with horns
L1_UnleashHell_InfernoScan_128x64 8 Fire-themed radar scanner with soul counter
L1_UnleashHell_ChaosMatrix_128x64 8 Infernal matrix rain with hex/hell characters

๐Ÿ’€ Level 2 โ€” Condemned (Levels 11โ€“20)

Animation Frames Description
L2_UnleashHell_HellCode_128x64 8 Coding in the underworld โ€” hell terminal
L2_UnleashHell_Damnation_128x64 8 DAMNED! celebration with chains and fire

๐Ÿ‘‘ Level 3 โ€” Dark Lord (Levels 21โ€“30)

Animation Frames Description
L3_UnleashHell_DarkLord_128x64 8 Spinning pentagram with elite status
L3_UnleashHell_Apocalypse_128x64 8 Lightning + demon skull + max fire

๐ŸŒ€ Bonus

Animation Frames Description
NullSec_UnleashHell_Hellgate_128x64 8 Animated hell gate portal

๐Ÿ“ฆ Installation

Method 1: qFlipper (Easiest)

  1. Download the latest release ZIP from Releases
  2. Extract the ZIP
  3. Connect your Flipper Zero via USB
  4. Open qFlipper
  5. Navigate to SD Card โ†’ asset_packs/
  6. Drag & drop the entire NullSec_Unleash_Hell folder into asset_packs/
  7. Reboot your Flipper (Settings โ†’ Reboot)
SD Card/
โ””โ”€โ”€ asset_packs/
    โ””โ”€โ”€ NullSec_Unleash_Hell/
        โ”œโ”€โ”€ Anims/
        โ”‚   โ”œโ”€โ”€ L1_UnleashHell_Hellfire_128x64/
        โ”‚   โ”œโ”€โ”€ L1_UnleashHell_Demon_128x64/
        โ”‚   โ”œโ”€โ”€ ...
        โ”‚   โ””โ”€โ”€ manifest.txt
        โ””โ”€โ”€ pack.txt

Method 2: Manual SD Card Copy

  1. Download the latest release ZIP
  2. Remove your Flipper's microSD card
  3. Mount it on your computer
  4. Copy NullSec_Unleash_Hell/ to the asset_packs/ directory on the SD card
  5. Eject and reinsert the SD card into your Flipper
  6. Reboot your Flipper

Method 3: Flipper CLI (USB)

# Clone this repo
git clone https://github.com/bad-antics/nullsec-unleash-hell.git
cd nullsec-unleash-hell

# Copy via Flipper CLI storage commands
# Connect Flipper via USB, then:
screen /dev/ttyACM0 115200

# In Flipper CLI:
storage mkdir /ext/asset_packs/NullSec_Unleash_Hell
storage mkdir /ext/asset_packs/NullSec_Unleash_Hell/Anims

Or use the upload script from nullsec-flipper-suite:

python3 upload_to_flipper.py --path asset_pack/NullSec_Unleash_Hell --dest /ext/asset_packs/NullSec_Unleash_Hell

Method 4: Momentum / Xtreme Firmware

If you're running Momentum or Xtreme firmware:

  1. Copy NullSec_Unleash_Hell/ to SD Card/asset_packs/
  2. Go to Momentum Settings โ†’ Interface โ†’ Desktop โ†’ Animations
  3. Select NullSec_Unleash_Hell as your active asset pack
  4. Done! ๐Ÿ”ฅ

๐Ÿ”ง Activating the Theme

After copying the files to your Flipper:

  1. Settings โ†’ Desktop โ†’ Animations
  2. Select NullSec_Unleash_Hell from the list
  3. Your Flipper will now display the hellfire theme!

Note: On stock firmware, asset packs are supported on firmware 0.98.0+. On Momentum/Xtreme, asset packs have been supported since early builds.


๐ŸŽจ Generating Custom Frames

Want to modify the animations or create your own variants?

# Install dependencies
pip install Pillow

# Run the generator
python3 scripts/generate_unleash_hell.py

# Output goes to asset_pack/NullSec_Unleash_Hell/
# Preview GIFs go to previews/

The generator creates:

  • .bm files (Flipper bitmap format โ€” 1-bit, 128ร—64, LSB-packed)
  • .png previews for each frame
  • Animated .gif previews for each animation
  • meta.txt for each animation
  • manifest.txt for the animation set
  • pack.txt asset pack descriptor

๐Ÿ“ Project Structure

nullsec-unleash-hell/
โ”œโ”€โ”€ asset_pack/
โ”‚   โ””โ”€โ”€ NullSec_Unleash_Hell/        โ† Copy this folder to your Flipper
โ”‚       โ”œโ”€โ”€ Anims/
โ”‚       โ”‚   โ”œโ”€โ”€ L1_UnleashHell_Hellfire_128x64/
โ”‚       โ”‚   โ”‚   โ”œโ”€โ”€ frame_0.bm
โ”‚       โ”‚   โ”‚   โ”œโ”€โ”€ frame_1.bm
โ”‚       โ”‚   โ”‚   โ”œโ”€โ”€ ...
โ”‚       โ”‚   โ”‚   โ””โ”€โ”€ meta.txt
โ”‚       โ”‚   โ”œโ”€โ”€ L1_UnleashHell_Demon_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ L1_UnleashHell_InfernoScan_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ L1_UnleashHell_ChaosMatrix_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ L2_UnleashHell_HellCode_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ L2_UnleashHell_Damnation_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ L3_UnleashHell_DarkLord_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ L3_UnleashHell_Apocalypse_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ NullSec_UnleashHell_Boot_128x64/
โ”‚       โ”‚   โ”œโ”€โ”€ NullSec_UnleashHell_Hellgate_128x64/
โ”‚       โ”‚   โ””โ”€โ”€ manifest.txt
โ”‚       โ””โ”€โ”€ pack.txt
โ”œโ”€โ”€ previews/                         โ† Animated GIF previews
โ”œโ”€โ”€ scripts/
โ”‚   โ””โ”€โ”€ generate_unleash_hell.py      โ† Animation generator
โ”œโ”€โ”€ LICENSE
โ””โ”€โ”€ README.md

๐Ÿค Credits


๐Ÿ“œ License

This project is licensed under the MIT License โ€” see LICENSE for details.


Unleash Hell on your Flipper Zero. ๐Ÿ”ฅ๐Ÿฌ

About

๐Ÿ”ฅ NullSec Unleash Hell โ€” Flipper Zero Theme Pack | 10 hellfire animations, 88 frames, demon skulls, pentagrams, chains & fire | Boot + L1-L3 dolphin levels

Topics

Resources

Stars

4 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages


Back | FazBrowse Home | New Git URL