glance: rearrange widgets

This commit is contained in:
Nico 2025-05-03 16:16:03 +10:00
parent 8a9ca9fd5d
commit 85e1e2b224

View file

@ -16,7 +16,7 @@
size = "full"; size = "full";
widgets = [ widgets = [
{ {
type = "split-column"; type = "group";
widgets = [ widgets = [
{ {
type = "clock"; type = "clock";
@ -42,6 +42,10 @@
units = "metric"; # alternatively "imperial" units = "metric"; # alternatively "imperial"
hour-format = "12h"; # alternatively "24h" hour-format = "12h"; # alternatively "24h"
} }
{
type = "calendar";
first-day-of-week = "monday";
}
]; ];
} }
{ {
@ -53,35 +57,35 @@
links = [ links = [
{ {
title = "Jellyfin"; title = "Jellyfin";
url = "http://10.0.0.32:8096"; url = "http://${config.networking.hostName}:8096";
} }
{ {
title = "Jellyseer"; title = "Jellyseer";
url = "http://10.0.0.32:5055"; url = "http://${config.networking.hostName}:5055";
} }
{ {
title = "Radarr"; title = "Radarr";
url = "http://10.0.0.32:7878"; url = "http://${config.networking.hostName}:7878";
} }
{ {
title = "Sonarr"; title = "Sonarr";
url = "http://10.0.0.32:8989"; url = "http://${config.networking.hostName}:8989";
} }
{ {
title = "Lidarr"; title = "Lidarr";
url = "http://10.0.0.32:8686"; url = "http://${config.networking.hostName}:8686";
} }
{ {
title = "Prowlarr"; title = "Prowlarr";
url = "http://10.0.0.32:9696"; url = "http://${config.networking.hostName}:9696";
} }
{ {
title = "Bazarr"; title = "Bazarr";
url = "http://10.0.0.32:6767"; url = "http://${config.networking.hostName}:6767";
} }
{ {
title = "Deluge"; title = "Deluge";
url = "http://10.0.0.32:8112"; url = "http://${config.networking.hostName}:8112";
} }
]; ];
} }
@ -89,15 +93,6 @@
} }
]; ];
} }
{
size = "small";
widgets = [
{
type = "calendar";
first-day-of-week = "monday";
}
];
}
]; ];
} }
]; ];