-
Notifications
You must be signed in to change notification settings - Fork 6
Host Module
Sam edited this page Aug 7, 2024
·
3 revisions
The host
module displays whatever your computer's "host" is, typically either your laptop's model name, or motherboard's name.
Insert into the modules
array.
-
title
-> (String) The module title. -
format
-> (String) The format used to display the module. Check below to see available placeholders. -
title_color
-> (Optional/String) Override the title color to be used. -
title_bold
-> (Optional/Bool) Make the title bold. -
title_italic
-> (Optional/Bool) Make the title italic. -
separator
-> (Optional/Char) Override the separator to be used.
-
{host}
-> The name of the host, either your motherboard name or laptop model. -
{chassis}
-> The type of chassis, e.g Desktop or Laptop.
[host]
title = "Host"
format = "{host} ({chassis})"
modules = [
"host"
]
[host]
title = "Host"
format = "Running on {host}"