Activate orbital screen on load

This commit is contained in:
Jeremy Soller 2016-11-29 21:25:45 -07:00
parent 08555f3a07
commit f81bf2d724
2 changed files with 9 additions and 3 deletions

View file

@ -50,9 +50,15 @@ impl SchemeMut for DisplayScheme {
Err(Error::new(EACCES))
}
} else {
let path_str = str::from_utf8(path).unwrap_or("");
let id = path_str.parse::<usize>().unwrap_or(0);
let path_str = str::from_utf8(path).unwrap_or("").trim_matches('/');
let mut parts = path_str.split('/');
let id = parts.next().unwrap_or("").parse::<usize>().unwrap_or(0);
if self.screens.contains_key(&id) {
for cmd in parts {
if cmd == "activate" {
self.active = id;
}
}
Ok(id)
} else {
Err(Error::new(ENOENT))

View file

@ -9,4 +9,4 @@ dhcpd -b
getty display:2
getty display:3
stdio debug:
/sbin/orbital display:4 /ui/bin/orblogin /ui/bin/launcher
/sbin/orbital display:4/activate /ui/bin/orblogin /ui/bin/launcher