Archived
1

Add profile setting

This commit is contained in:
Evan Pratten 2022-01-23 14:08:18 -05:00
parent 3ae11400ad
commit fc48fbbde1
2 changed files with 40 additions and 2 deletions

View File

@ -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();
}

View File

@ -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)));
}