Adds logo for Radarr, Sonarr, Prowlarr ...
This commit is contained in:
@@ -34,7 +34,7 @@ services:
|
||||
subtitle: 'Movie tracker'
|
||||
target: '_blank'
|
||||
url: 'http://radarr.lan'
|
||||
type: sonarr
|
||||
type: radarr
|
||||
keywords: 'movies tracker torrent usenet'
|
||||
|
||||
- title: '/Cloud'
|
||||
|
||||
7
src/lib/services/jellyfin/+service.ts
Normal file
7
src/lib/services/jellyfin/+service.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { ServiceHandler } from '../service';
|
||||
|
||||
export const handle: ServiceHandler = () => {
|
||||
return {
|
||||
logo: 'https://cdn.rawgit.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-transparent.svg'
|
||||
};
|
||||
};
|
||||
@@ -2,4 +2,4 @@
|
||||
export let data;
|
||||
</script>
|
||||
|
||||
pihole status {data}
|
||||
pihole status placeholder
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
<script lang="ts">
|
||||
export let data;
|
||||
</script>
|
||||
|
||||
Prowlarr content {data}
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { ServiceHandler } from '../service';
|
||||
|
||||
export const handle: ServiceHandler = () => {
|
||||
return { prowlardata: 'coucou' };
|
||||
return { logo: 'https://cdn.rawgit.com/Prowlarr/Prowlarr/develop/Logo/Prowlarr.svg' };
|
||||
};
|
||||
|
||||
5
src/lib/services/radarr/+service.ts
Normal file
5
src/lib/services/radarr/+service.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import type { ServiceHandler } from '../service';
|
||||
|
||||
export const handle: ServiceHandler = () => {
|
||||
return { logo: 'https://cdn.rawgit.com/Radarr/Radarr/develop/Logo/Radarr.svg' };
|
||||
};
|
||||
5
src/lib/services/sonarr/+service.ts
Normal file
5
src/lib/services/sonarr/+service.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import type { ServiceHandler } from '../service';
|
||||
|
||||
export const handle: ServiceHandler = () => {
|
||||
return { logo: 'https://cdn.rawgit.com/Sonarr/Sonarr/develop/Logo/Sonarr.svg' };
|
||||
};
|
||||
Reference in New Issue
Block a user