2022-09-28 20:59:28 -05:00
|
|
|
|
import Layout from '../components/Layout'
|
|
|
|
|
import SEO from '../components/SEO'
|
2022-10-04 22:37:40 -05:00
|
|
|
|
import {
|
|
|
|
|
getConfigSettings,
|
|
|
|
|
Documentation,
|
|
|
|
|
filterDesc,
|
|
|
|
|
} from '../utils/doc-utils'
|
2022-09-30 11:31:40 -05:00
|
|
|
|
import Docs from '../components/Docs'
|
2022-09-28 20:59:28 -05:00
|
|
|
|
|
|
|
|
|
export interface ConfigSettingsProps {
|
2022-09-30 17:20:17 -05:00
|
|
|
|
config_settings: Documentation
|
2022-09-28 20:59:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function ConfigSettings(props: ConfigSettingsProps) {
|
|
|
|
|
return (
|
2024-02-26 13:18:49 -05:00
|
|
|
|
<Layout>
|
2022-09-28 20:59:28 -05:00
|
|
|
|
<SEO
|
|
|
|
|
title="Conky – Config settings"
|
|
|
|
|
description="Conky configuration settings"
|
|
|
|
|
/>
|
2024-04-22 14:13:56 +07:00
|
|
|
|
<main className="w-full pt-4">
|
2022-09-28 20:59:28 -05:00
|
|
|
|
<div>
|
2024-04-22 14:13:56 +07:00
|
|
|
|
<h1 className="text-2xl px-2 lg:px-4" data-cy="page-heading">
|
2023-02-26 09:37:41 -05:00
|
|
|
|
Configuration settings
|
|
|
|
|
</h1>
|
2022-09-28 20:59:28 -05:00
|
|
|
|
</div>
|
2022-09-30 17:20:17 -05:00
|
|
|
|
<Docs docs={props.config_settings} braces={false} assign={true} />
|
2022-09-28 20:59:28 -05:00
|
|
|
|
</main>
|
|
|
|
|
</Layout>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function getStaticProps() {
|
2022-10-04 22:37:40 -05:00
|
|
|
|
const config_settings = filterDesc(getConfigSettings())
|
2022-09-28 20:59:28 -05:00
|
|
|
|
|
2024-02-26 13:18:49 -05:00
|
|
|
|
return { props: { config_settings } }
|
2022-09-28 20:59:28 -05:00
|
|
|
|
}
|