fix: tweaks to cli args broke powermenu

This commit is contained in:
imgurbot12 2024-04-09 23:14:27 -07:00
parent 2e436401f3
commit 9e6ca9957e

View File

@ -178,21 +178,22 @@ struct OptionArgs {
pub key_jump_prev: Option<Vec<String>>, pub key_jump_prev: Option<Vec<String>>,
// window settings // window settings
/// Override Window Title /// Override Window Title
#[arg(short, long)] #[arg(long)]
pub title: Option<String>, pub title: Option<String>,
/// Override Window Deocration Settings /// Override Window Deocration Settings
#[arg(short, long)] #[arg(long)]
pub deocorate: Option<bool>, pub deocorate: Option<bool>,
/// Override Window Fullscreen Settings /// Override Window Fullscreen Settings
#[arg(short, long)] #[arg(long)]
pub fullscreen: Option<bool>, pub fullscreen: Option<bool>,
/// Override Window Tranparent Settings /// Override Window Tranparent Settings
#[arg(short, long)] #[arg(long)]
pub transparent: Option<bool>, pub transparent: Option<bool>,
/// Override Window Width /// Override Window Width
#[arg(short = 'w', long)] #[arg(short = 'w', long)]
pub window_width: Option<f64>, pub window_width: Option<f64>,
/// Override Window Height /// Override Window Height
#[arg(short = 'h', long)]
pub window_height: Option<f64>, pub window_height: Option<f64>,
} }