Renamed project to tuigreet.

This commit is contained in:
Antoine POPINEAU 2020-06-28 17:18:43 +02:00
parent e5eeb270af
commit 53b80f93a2
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
5 changed files with 21 additions and 21 deletions

View File

@ -30,4 +30,4 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
cwd: ${{ github.workspace }}
files: target/release/greetd-tui
files: target/release/tuigreet

26
Cargo.lock generated
View File

@ -56,19 +56,6 @@ dependencies = [
"unicode-width",
]
[[package]]
name = "greetd-tui"
version = "0.1.0"
dependencies = [
"chrono",
"getopts",
"greetd_ipc",
"nix",
"termion",
"textwrap",
"tui",
]
[[package]]
name = "greetd_ipc"
version = "0.6.0"
@ -286,6 +273,19 @@ dependencies = [
"unicode-width",
]
[[package]]
name = "tuigreet"
version = "0.1.0"
dependencies = [
"chrono",
"getopts",
"greetd_ipc",
"nix",
"termion",
"textwrap",
"tui",
]
[[package]]
name = "unicode-segmentation"
version = "1.6.0"

View File

@ -1,5 +1,5 @@
[package]
name = "greetd-tui"
name = "tuigreet"
version = "0.1.0"
authors = ["Antoine POPINEAU <antoine.popineau@appscho.com>"]
edition = "2018"

View File

@ -1,13 +1,13 @@
# greetd-tui
# tuigreet
Graphical console greter for [greetd](https://git.sr.ht/~kennylevinsen/greetd).
![Screenshot of greetd-tui](https://github.com/apognu/greetd-tui/blob/master/contrib/screenshot.png)
![Screenshot of tuigreet](https://github.com/apognu/tuigreet/blob/master/contrib/screenshot.png)
## Usage
```
Usage: greetd-tui [OPTIONS]
Usage: tuigreet [OPTIONS]
Options:
-h, --help show this usage information
@ -21,13 +21,13 @@ Options:
## Configuration
Edit `/etc/greetd/config.toml` and set the `command` setting to use `greetd-tui`:
Edit `/etc/greetd/config.toml` and set the `command` setting to use `tuigreet`:
```
[terminal]
vt = 1
[default_session]
command = "greetd-tui --cmd sway"
command = "tuigreet --cmd sway"
user = "greeter"
```

View File

@ -142,5 +142,5 @@ impl Greeter {
}
fn print_usage(opts: Options) {
eprint!("{}", opts.usage("Usage: greetd-tui [OPTIONS]"));
eprint!("{}", opts.usage("Usage: tuigreet [OPTIONS]"));
}