diff --git a/data/configs/default.json b/data/configs/default.json index f22f3d3db..a4941e684 100644 --- a/data/configs/default.json +++ b/data/configs/default.json @@ -360,6 +360,54 @@ } } } + }, + { + "id": "135b7adf-0616-481f-991e-a9035d66b924", + "type": "torrents-status", + "properties": { + "displayCompletedTorrents": true, + "displayStaleTorrents": true, + "labelFilterIsWhitelist": true, + "labelFilter": [] + }, + "area": { + "type": "wrapper", + "properties": { + "id": "default" + } + }, + "shape": { + "sm": { + "location": { + "x": 0, + "y": 0 + }, + "size": { + "width": 2, + "height": 2 + } + }, + "md": { + "location": { + "x": 0, + "y": 0 + }, + "size": { + "width": 2, + "height": 2 + } + }, + "lg": { + "location": { + "x": 0, + "y": 0 + }, + "size": { + "width": 2, + "height": 2 + } + } + } } ], "settings": { @@ -380,14 +428,14 @@ "pageTitle": "Homarr ⭐️", "logoImageUrl": "/imgs/logo/logo.png", "faviconUrl": "/imgs/favicon/favicon-squared.png", - "backgroundImageUrl": "", + "backgroundImageUrl": "https://images.unsplash.com/32/Mc8kW4x9Q3aRR3RkP5Im_IMG_4417.jpg?ixid=M3wxMjA3fDB8MXxzZWFyY2h8MTV8fGJhY2tncm91bmQlMjBpbWFnZXxlbnwwfHx8fDE2OTE0NDQ5NjF8MA&ixlib=rb-4.0.3", "customCss": "", "colors": { "primary": "red", "secondary": "yellow", "shade": 7 }, - "appOpacity": 100 + "appOpacity": 30 } } } \ No newline at end of file diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index d553b4301..7703d5486 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -67,7 +67,6 @@ function App( }; useEffect(() => { - console.log('running page props stuff'); setPrimaryColor(props.pageProps.primaryColor ?? 'red'); setSecondaryColor(props.pageProps.secondaryColor ?? 'orange'); setPrimaryShade(props.pageProps.primaryShade ?? 6);