diff options
author | axtlos <axtlos@tar.black> | 2022-07-01 13:43:58 +0200 |
---|---|---|
committer | axtlos <axtlos@tar.black> | 2022-07-01 13:43:58 +0200 |
commit | 6daf7e23da3bdcd387153f0545643e9ac4a96850 (patch) | |
tree | a303e969f8780b4ef9f6452cf9ca73c7355270c1 /com.fishshell.fish/fish_command_not_found.fish | |
parent | a7c8d9fe3b8d02ff080b57950b78527b8066d268 (diff) | |
download | flatpaks-6daf7e23da3bdcd387153f0545643e9ac4a96850.tar.gz flatpaks-6daf7e23da3bdcd387153f0545643e9ac4a96850.tar.bz2 |
add command_not_found function to execute commands on host
Diffstat (limited to '')
-rw-r--r-- | com.fishshell.fish/fish_command_not_found.fish | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/com.fishshell.fish/fish_command_not_found.fish b/com.fishshell.fish/fish_command_not_found.fish new file mode 100644 index 0000000..348cbc7 --- /dev/null +++ b/com.fishshell.fish/fish_command_not_found.fish @@ -0,0 +1,5 @@ +function fish_command_not_found + flatpak-spawn --host $argv +end + + |