Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"tabWidth": 2,
"useTabs": false,
"printWidth": 80,
"bracketSpacing": true,
"arrowParens": "always"
}
31 changes: 31 additions & 0 deletions docs/customservices.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ within Homer:
- [Common options](#common-options)
- [AdGuard Home](#adguard-home)
- [CopyToClipboard](#copy-to-clipboard)
- [Calendar](#calendar)
- [Docuseal](#docuseal)
- [Docker Socket Proxy](#docker-socket-proxy)
- [Emby / Jellyfin](#emby--jellyfin)
Expand Down Expand Up @@ -107,6 +108,36 @@ Configuration example:
clipboard: "this text will be copied to your clipboard"
```

## Calendar

This service displays a calendar with events from either a Nextcloud calendar or an iCal feed.

You can retrieve a token for Nextcloud by going to your Nextcloud settings, then "Security" and generating a new app password.

To get the calendar URL, you can go to your Nextcloud calendar, click on the pen next to the calendar name, and select "Copy internal link".

### Nextcloud Calendar

```yaml
- name: "Nextcloud Calendar"
type: "NextcloudCalendar"
url: "https://cloud.example.com/remote.php/dav/calendars/username/calendarname"
user: "<---insert-username-here--->"
token: "<---insert-token-here--->"
```

### iCal Calendar

In case of iCal calendar, you do not need to provide a user or token, if the calendar has no basic authentication enabled.

```yaml
- name: "iCal Calendar"
type: "ICalendar"
url: "https://calendar.example.com/calendarname"
user: "<---insert-optional-username-here--->"
token: "<---insert-optional-token-here--->"
```

## Docker Socket Proxy

This service display the number of running, stopped and containers that have errors.
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@fortawesome/fontawesome-free": "^6.7.2",
"bulma": "^1.0.4",
"lodash.merge": "^4.6.2",
"luxon": "^3.7.1",
"vue": "^3.5.14",
"yaml": "^2.8.0"
},
Expand Down
Loading