Fix warnings
This commit is contained in:
parent
ea5004088e
commit
d8c81ce3fb
2 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ async fn main() {
|
|||
|
||||
env::set_var("GREETD_SOCK", &greetd_sock);
|
||||
thread::spawn(|| {
|
||||
cosmic_greeter::greeter::main();
|
||||
cosmic_greeter::greeter::main().unwrap();
|
||||
});
|
||||
|
||||
loop {
|
||||
|
|
|
|||
|
|
@ -37,11 +37,11 @@ use std::{
|
|||
};
|
||||
use tokio::{net::UnixStream, time};
|
||||
use wayland_client::{protocol::wl_output::WlOutput, Proxy};
|
||||
use zbus::{dbus_proxy, Connection};
|
||||
use zbus::{proxy, Connection};
|
||||
|
||||
use crate::fl;
|
||||
|
||||
#[dbus_proxy(
|
||||
#[proxy(
|
||||
interface = "com.system76.CosmicGreeter",
|
||||
default_service = "com.system76.CosmicGreeter",
|
||||
default_path = "/com/system76/CosmicGreeter"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue