-
Notifications
You must be signed in to change notification settings - Fork 11
Session title template variables
Tim Weißenfels edited this page Aug 3, 2020
·
2 revisions
In the Tabs Aside options you can set a custom session title template which will be used for new sessions. The template string may contain the following variables which will be automatically replaced:
| Specifier | Description | Examples |
|---|---|---|
$d |
Day of the month |
1, 31
|
$dd |
Day of the month |
01, 31
|
$M |
Month |
1, 12
|
$MM |
Month |
01, 12
|
$y |
Year | 2020 |
$H |
Hours (24h) |
0, 23
|
$h |
Hours (12h) |
1, 12
|
$m |
Minutes |
04, 59
|
$s |
Seconds |
05, 42
|
$p |
Period (12h) |
am, pm
|
The template string: Session $d.$M. - $Hh
would result in the session title Session 25.2. - 21h (on 2/25/2020 9:37 pm)