Browse Source

Merge pull request #125 from frenos/foundation_glances

Foundation App for Glances
pull/134/head
KodeStar 7 years ago
committed by GitHub
parent
commit
f8cf3ac832
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 14
      app/SupportedApps/Glances.php
  3. BIN
      storage/app/public/supportedapps/glances.png

1
app/Item.php

@ -31,6 +31,7 @@ class Item extends Model
'Duplicati' => \App\SupportedApps\Duplicati::class, 'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class, 'Emby' => \App\SupportedApps\Emby::class,
'Gitea' => \App\SupportedApps\Gitea::class, 'Gitea' => \App\SupportedApps\Gitea::class,
'Glances' => \App\SupportedApps\Glances::class,
'Graylog' => \App\SupportedApps\Graylog::class, 'Graylog' => \App\SupportedApps\Graylog::class,
'Home Assistant' => \App\SupportedApps\HomeAssistant::class, 'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
'Jackett' => \App\SupportedApps\Jackett::class, 'Jackett' => \App\SupportedApps\Jackett::class,

14
app/SupportedApps/Glances.php

@ -0,0 +1,14 @@
<?php namespace App\SupportedApps;
class Glances implements Contracts\Applications {
public function defaultColour()
{
return '#2c363f';
}
public function icon()
{
return 'supportedapps/glances.png';
}
}

BIN
storage/app/public/supportedapps/glances.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Loading…
Cancel
Save