Warm Up by the Fire with Bash (Fire Ascii Art)

cassiebreviu

Cassie Breviu

Posted on January 15, 2020

Warm Up by the Fire with Bash (Fire Ascii Art)

Burrrr, its cold outside! Lets add a fire theme to our terminal to warm up!

Alt Text

Prerequisites for Windows

Setup Steps

  1. Install libaa sudo apt-get install libaa-bin
  2. Test command aafire
  3. Add it to windows terminal:

Profile json to add it to terminal

    {
        "acrylicOpacity" : 0.5,
        "closeOnExit" : true,
        "colorScheme" : "Fireplace",
        "commandline" : "wsl.exe -d Ubuntu aafire",
        "cursorColor" : "#FFFFFF",
        "cursorShape" : "bar",
        "fontFace" : "Consolas",
        "fontSize" : 20,
        "guid" : "{6f9994f0-4403-5e85-9eec-98e5da3839xx}",
        "historySize" : 9001,
        "icon" : "ms-appx:///ProfileIcons/{9acb9455-ca41-5af7-950f-6bca1bc972xx}.png",
        "backgroundImage" : "",
        "backgroundImageOpacity" : 0.75,
        "backgroundImageStrechMode" : "fill",
        "name" : "Ubuntu Fireplace",
        "padding" : "0, 0, 0, 0",
        "snapOnInput" : true,
        "startingDirectory" : "%USERPROFILE%",
        "useAcrylic" : false
    }
Enter fullscreen mode Exit fullscreen mode


Theme fireplace json to give it fire colors

    {
      "background": "#002B36",
      "black": "#073642",
      "blue": "#268BD2",
      "brightBlack": "#002B36",
      "brightBlue": "#839496",
      "brightCyan": "#93A1A1",
      "brightGreen": "#586E75",
      "brightPurple": "#6C71C4",
      "brightRed": "#CB4B16",
      "brightWhite": "#FFFF00",
      "brightYellow": "#657B83",
      "cyan": "#2AA198",
      "foreground": "#FF8000",
      "green": "#859900",
      "name": "Fireplace",
      "purple": "#D33682",
      "red": "#DC322F",
      "white": "#EEE8D5",
      "yellow": "#B58900"
    }
Enter fullscreen mode Exit fullscreen mode

That's 🔥!

Now you can warm up by the terminal fireplace until summer returns. 😊

💖 💪 🙅 🚩
cassiebreviu
Cassie Breviu

Posted on January 15, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related