mirror of
https://github.com/chmln/handlr.git
synced 2024-11-14 21:49:27 +01:00
handle %F
This commit is contained in:
parent
9a39c056e8
commit
13d3b0f5f8
1 changed files with 6 additions and 2 deletions
|
@ -30,7 +30,7 @@ impl Handler {
|
|||
}
|
||||
pub fn get_path(name: &str) -> Option<PathBuf> {
|
||||
let locally = {
|
||||
let mut local_dir = dirs::data_dir().unwrap();
|
||||
let mut local_dir = dirs::data_dir()?;
|
||||
local_dir.push("applications");
|
||||
local_dir.push(name);
|
||||
Some(local_dir).filter(|p| p.exists())
|
||||
|
@ -86,7 +86,11 @@ impl DesktopEntry {
|
|||
) -> Result<(String, Vec<String>)> {
|
||||
let arg = arg.unwrap_or_default();
|
||||
let arg = shlex::quote(&arg);
|
||||
let replaced = self.exec.replace("%f", &arg).replace("%U", &arg);
|
||||
let replaced = self
|
||||
.exec
|
||||
.replace("%f", &arg)
|
||||
.replace("%U", &arg)
|
||||
.replace("%F", &arg);
|
||||
|
||||
let mut split = shlex::split(&replaced).ok_or(Error::BadCmd)?;
|
||||
Ok((split.remove(0), split))
|
||||
|
|
Loading…
Reference in a new issue