mirror of
https://github.com/chmln/handlr.git
synced 2025-02-17 06:28:39 +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
|
// 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…
Add table
Reference in a new issue