mirror of
https://github.com/chmln/handlr.git
synced 2024-11-14 21:49:27 +01:00
fix default config values
This commit is contained in:
parent
53278c0a7e
commit
96a5176b25
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ impl Default for Config {
|
||||||
// This seems repetitive but serde does not uses Default
|
// This seems repetitive but serde does not uses Default
|
||||||
Config {
|
Config {
|
||||||
enable_selector: false,
|
enable_selector: false,
|
||||||
selector: std::env::var("TERMINAL").unwrap_or("xterm -e".into()),
|
selector: "rofi -dmenu -p 'Open With: '".into(),
|
||||||
terminal_emulator: "rofi -dmenu -p 'Open With: '".into(),
|
terminal_emulator: std::env::var("TERMINAL").unwrap_or("xterm -e".into()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue