Skip to content

Commit

Permalink
Add systemd info to README, convert to .md
Browse files Browse the repository at this point in the history
  • Loading branch information
themoken committed Aug 14, 2014
1 parent f96a4c2 commit 1c96342
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 20 deletions.
20 changes: 0 additions & 20 deletions README

This file was deleted.

48 changes: 48 additions & 0 deletions README.md
@@ -0,0 +1,48 @@
# Canto Daemon

This is the RSS backend for Canto clients.

Canto-curses is the default client at:

http://github.com/themoken/canto-curses

## Requirements

Debian / Ubuntu
- python3
- python3-feedparser

Arch (Py3 is default)
- python
- python-feedparser

## Install

From this directory, run

```sh
$ sudo python3 setup.py install
```


If you're a systemd user you can easily run it on startup

```sh
$ systemctl --user enable canto-daemon
```

Or start it manually with

```sh
$ systemctl --user start canto-daemon
```

By default, user sessions start on login, and end on logoff stopping daemons.
This is good behavior, but if you don't want canto-daemon to stop when you
log out (to keep gathering news) enable "lingering" for your account.

```
$ loginctl enable-linger <username>
```

This will start one session for you on boot that will last until shutdown.

0 comments on commit 1c96342

Please sign in to comment.