Add profile setting
This commit is contained in:
parent
3ae11400ad
commit
fc48fbbde1
@ -1,4 +1,29 @@
|
|||||||
|
use colored::Colorize;
|
||||||
|
|
||||||
|
use crate::config::{get_device_profiles, get_profile_script};
|
||||||
|
|
||||||
pub fn set_profile(tablet_name: &str, profile_name: &str) {
|
pub fn set_profile(tablet_name: &str, profile_name: &str) {
|
||||||
todo!();
|
// Get all valid profiles for the tablet
|
||||||
}
|
let tablet_profiles = get_device_profiles(tablet_name).unwrap();
|
||||||
|
|
||||||
|
// Check if the profile is valid
|
||||||
|
if !tablet_profiles.contains(&profile_name.to_string()) {
|
||||||
|
println!(
|
||||||
|
"{} is not a valid profile for {}",
|
||||||
|
profile_name, tablet_name
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the profile
|
||||||
|
println!(
|
||||||
|
"Setting tablet {} to use profile {}",
|
||||||
|
tablet_name, profile_name.green()
|
||||||
|
);
|
||||||
|
let profile_script = get_profile_script(tablet_name, profile_name).unwrap();
|
||||||
|
let _output = std::process::Command::new("bash")
|
||||||
|
.arg("-exc")
|
||||||
|
.arg(profile_script)
|
||||||
|
.spawn()
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
@ -84,3 +84,16 @@ pub fn get_device_profiles(config_name: &str) -> Result<Vec<String>, std::io::Er
|
|||||||
.collect::<Vec<_>>()
|
.collect::<Vec<_>>()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Gets the path to the script for a profile for a tablet from its config name and profile name
|
||||||
|
pub fn get_profile_script(
|
||||||
|
config_name: &str,
|
||||||
|
profile_name: &str,
|
||||||
|
) -> Result<PathBuf, std::io::Error> {
|
||||||
|
let config_dir = get_config_dir()?;
|
||||||
|
return Ok(config_dir
|
||||||
|
.join("devices")
|
||||||
|
.join(config_name)
|
||||||
|
.join("profiles")
|
||||||
|
.join(format!("{}.sh", profile_name)));
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user