Skip to content

Full Config Reference

The complete default configs/client/terminal.lua for Dead Drop. Use this as a reference or starting point for your own configuration.

TIP

This is the full unedited config file. For a detailed explanation of each option, see the Configuration page.

Download terminal.lua

lua
return {
    -- Faded SD monogram watermark behind the console text. false = plain background.
    Watermark = false,

    -- ASCII-art boot banner: each string in `lines` draws top-to-bottom in `color` (any CSS
    -- color). Generate art at patorjk.com ("ANSI Shadow" font) and keep every line the same
    -- character width (the terminal is monospace). Banner = false (or lines = {}) disables it.
    Banner = {
        color = '#f14c4c', -- Merryweather red; try '#88e52b' (brand green), '#00e5ff', 'rgb(255,180,0)', ...
        lines = {
            '   ███╗   ███╗ ███████╗ ██████╗  ██████╗  ██╗   ██╗ ██╗    ██╗ ███████╗  █████╗  ████████╗ ██╗  ██╗ ███████╗ ██████╗ ',
            '   ████╗ ████║ ██╔════╝ ██╔══██╗ ██╔══██╗ ╚██╗ ██╔╝ ██║    ██║ ██╔════╝ ██╔══██╗ ╚══██╔══╝ ██║  ██║ ██╔════╝ ██╔══██╗',
            '   ██╔████╔██║ █████╗   ██████╔╝ ██████╔╝  ╚████╔╝  ██║ █╗ ██║ █████╗   ███████║    ██║    ███████║ █████╗   ██████╔╝',
            '   ██║╚██╔╝██║ ██╔══╝   ██╔══██╗ ██╔══██╗   ╚██╔╝   ██║███╗██║ ██╔══╝   ██╔══██║    ██║    ██╔══██║ ██╔══╝   ██╔══██╗',
            '   ██║ ╚═╝ ██║ ███████╗ ██║  ██║ ██║  ██║    ██║    ╚███╔███╔╝ ███████╗ ██║  ██║    ██║    ██║  ██║ ███████╗ ██║  ██║',
            '   ╚═╝     ╚═╝ ╚══════╝ ╚═╝  ╚═╝ ╚═╝  ╚═╝    ╚═╝     ╚══╝╚══╝  ╚══════╝ ╚═╝  ╚═╝    ╚═╝    ╚═╝  ╚═╝ ╚══════╝ ╚═╝  ╚═╝',
        },
    },
}