summaryrefslogtreecommitdiff
path: root/wezterm/.wezterm.lua
blob: df1b874c6d595c8589d19a85bfdf5436692e7464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- Pull in the wezterm API
local wezterm = require 'wezterm'

-- This will hold the configuration.
local config = wezterm.config_builder()

-- This is where you actually apply your config choices
config.font = wezterm.font 'SarasaTermCL Nerd Font Mono'
config.font_size = 13
config.window_frame = {
    -- The font used in the tab bar.
    -- Roboto Bold is the default; this font is bundled
    -- with wezterm.
    -- Whatever font is selected here, it will have the
    -- main font setting appended to it to pick up any
    -- fallback fonts you may have used there.
    font = wezterm.font { family = 'San Francisco', weight = 'Bold' },
}

-- For example, changing the color scheme:
config.color_scheme = 'Apple Classic'

-- and finally, return the configuration to wezterm
return config
class="s">"></script> <link rel="stylesheet" href="{{ url_for('static', filename='scripts/libs/bootstrap/css/bootstrap.css') }}"> </head> <body> <div class="container"> <div class="col-xs-12 text-center"> <h1>Mach2</h1> </div> <div class="col-xs-offset-2 col-xs-8"> <form class="form-horizontal" action="/login" method="POST"> <div class="form-group"> <label for="username" class="col-xs-12 col-sm-3 control-label">Username</label> <div class="col-xs-12 col-sm-9"> <input type="text" class="form-control" id="username" name="username" placeholder="Username" /> </div> </div> <div class="form-group"> <label for="password" class="col-xs-12 col-sm-3 control-label">Password</label> <div class="col-xs-12 col-sm-9"> <input type="password" class="form-control" id="password" name="password" placeholder="Password" /> </div> </div> <div class="form-group"> <div class="col-xs-12 col-sm-offset-3 col-sm-9"> <button type="submit" class="btn btn-primary btn-block">Sign in</button> </div> </div> </form> </div> </div> </body> </html>