mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-27 06:49:37 +02:00
31 lines
721 B
TypeScript
31 lines
721 B
TypeScript
|
import { OtherSettingsForm, SearchForm, WeatherForm } from '../../interfaces';
|
||
|
|
||
|
export const otherSettingsTemplate: OtherSettingsForm = {
|
||
|
customTitle: document.title,
|
||
|
pinAppsByDefault: true,
|
||
|
pinCategoriesByDefault: true,
|
||
|
hideHeader: false,
|
||
|
hideApps: false,
|
||
|
hideCategories: false,
|
||
|
useOrdering: 'createdAt',
|
||
|
appsSameTab: false,
|
||
|
bookmarksSameTab: false,
|
||
|
dockerApps: true,
|
||
|
dockerHost: 'localhost',
|
||
|
kubernetesApps: true,
|
||
|
unpinStoppedApps: true,
|
||
|
};
|
||
|
|
||
|
export const weatherSettingsTemplate: WeatherForm = {
|
||
|
WEATHER_API_KEY: '',
|
||
|
lat: 0,
|
||
|
long: 0,
|
||
|
isCelsius: true,
|
||
|
};
|
||
|
|
||
|
export const searchSettingsTemplate: SearchForm = {
|
||
|
hideSearch: false,
|
||
|
searchSameTab: false,
|
||
|
defaultSearchProvider: 'l',
|
||
|
};
|