You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
@cmplstofB A very simple workaround is to crate an executable script invoking the command you need. For example, to use gio trash (I had the same problem),
nano fff_giotrash
the file is simply
#!/bin/sh
gio trash $1
make the script executable chmod +x fff_giotrash and available in your $PATH. Then
export FFF_TRASH_CMD="fff_giotrash"
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello.
I want to specify "gio trash" into the trash command variable (
$FFF_TRASH_CMD
), but shell regards it as a single command.→
Would you please support multiple words in
$FFF_TRASH_CMD
so that users can specify commands in more flexible way?The text was updated successfully, but these errors were encountered: