check super permission: win && linux
Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
parent
123a7aa17b
commit
4faf0a3d35
7 changed files with 208 additions and 78 deletions
|
|
@ -629,3 +629,9 @@ extern "C" {
|
|||
pub fn quit_gui() {
|
||||
unsafe { gtk_main_quit() };
|
||||
}
|
||||
|
||||
pub fn check_super_user_permission() -> ResultType<bool> {
|
||||
// TODO: replace echo with a rustdesk's program, which is location-fixed and non-gui.
|
||||
let status = std::process::Command::new("pkexec").arg("echo").status()?;
|
||||
Ok(status.success() && status.code() == Some(0))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue