mirror of
https://github.com/apognu/tuigreet.git
synced 2024-11-22 12:44:06 +03:00
Renamed project to tuigreet.
This commit is contained in:
parent
e5eeb270af
commit
53b80f93a2
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -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
26
Cargo.lock
generated
@ -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"
|
||||
|
@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "greetd-tui"
|
||||
name = "tuigreet"
|
||||
version = "0.1.0"
|
||||
authors = ["Antoine POPINEAU <antoine.popineau@appscho.com>"]
|
||||
edition = "2018"
|
||||
|
10
README.md
10
README.md
@ -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"
|
||||
```
|
||||
|
@ -142,5 +142,5 @@ impl Greeter {
|
||||
}
|
||||
|
||||
fn print_usage(opts: Options) {
|
||||
eprint!("{}", opts.usage("Usage: greetd-tui [OPTIONS]"));
|
||||
eprint!("{}", opts.usage("Usage: tuigreet [OPTIONS]"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user