A plugin that allows you to create simple command shortcuts in Wox.
This fork merges the changes from 2 other forks:
- Working directory support comes from @mars888.
- Support for correctly passing arguments when using global pattern (
*
) is by @slav. For some reason it didn't work properly for me, so I had to fix it. - A bug where arguments were not saved in the original version is fixed
- An icon from the configured command will be displayed instead of the fixed Runner icon
Configure the plugin in the Wox Settings window. Each item has four settings:
- Description - the human-readable command name that shows up in the Wox command list.
- Shortcut - the shortcut or alias you want to use.
- Path - the path to the program, or script you want to run.
- Working dir - directory where to start the process, Path program directory is used when empty
- Arguments - the arguments format to use when launching the program or script. This is a .NET format string.
The following sets up a shortcut that opens a remote desktop session:
- Description -
Remote Desktop
- Shortcut -
rdp
- Path -
mstsc
- Arguments -
/v:{0}
Now all I need to do is type in r rdp myserver
, hit enter, and a remote desktop session would be launched.