mirror of
https://github.com/chmln/handlr.git
synced 2024-11-14 13:39:29 +01:00
Merge pull request #25 from benmaddison/master
fix default config values
This commit is contained in:
commit
37dae85b18
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
|
||||
Config {
|
||||
enable_selector: false,
|
||||
selector: std::env::var("TERMINAL").unwrap_or("xterm -e".into()),
|
||||
terminal_emulator: "rofi -dmenu -p 'Open With: '".into(),
|
||||
selector: "rofi -dmenu -p 'Open With: '".into(),
|
||||
terminal_emulator: std::env::var("TERMINAL").unwrap_or("xterm -e".into()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue