Archived
1
This repository has been archived on 2025-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
tabset/src/commands/profile.rs
2022-01-23 14:08:18 -05:00

30 lines
854 B
Rust

use colored::Colorize;
use crate::config::{get_device_profiles, get_profile_script};
pub fn set_profile(tablet_name: &str, profile_name: &str) {
// 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();
}