Ubuntu – Command-line presentation tool for Linux

command linepresentation

In a few days I am going to give a presentation about Linux.
So I want to show Linux in style.
So I want any tool for presentation. I heard about Mdp.

Few screenshot

Now I want to make my own.
How can I create this type of slide?

Best Answer

In MDP, you're limited to what the console can do. Console text monospace and impossible to change its size on a character-by-character basis. That's sort of the point of this. You do have a couple of options to make it a better presentation though:

  1. Increase the global font size in the terminal (in Konsole this is Control++). This makes it easier to read at a distance but will limit how many rows you can fit on the screen. MDP will bug out if the font size is too big for the content.

  2. Use ASCII art! figlet is pretty great for this but you will have to use the markdown code-formatting to preseve the spacing around it in your presentation file.

     __  __         _____ _ _   _      _ 
    |  \/  |_   _  |_   _(_) |_| | ___| |
    | |\/| | | | |   | | | | __| |/ _ \ |
    | |  | | |_| |   | | | | |_| |  __/_|
    |_|  |_|\__, |   |_| |_|\__|_|\___(_)
            |___/                        
    

Ultimately it's going to be a combination of the two.

mdp really looks like fun though, just make sure you test it on the presentation hardware before you do your presentation - you don't want to be the muppet whose presentation doesn't work. It might make sense to make a screenshot-PDF backup.

Related Question