diff options
author | louie <lshprung@yahoo.com> | 2020-12-23 19:05:15 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-23 19:05:15 -0800 |
commit | a7c48cdd187c23b51e9aac54f4abbdb5c7c24a6f (patch) | |
tree | 2f6db9011114bc23423909ef1ac26d67b688c27b /docs/tml-config.md | |
parent | ecb7f2335af402242b447f95e5e2539ad9668011 (diff) |
Updated documentation to reflect previous commit
Diffstat (limited to 'docs/tml-config.md')
-rw-r--r-- | docs/tml-config.md | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/docs/tml-config.md b/docs/tml-config.md index dd9c834..41398c1 100644 --- a/docs/tml-config.md +++ b/docs/tml-config.md @@ -5,22 +5,23 @@ ## Table of Contents - [Creating a Group](#CreatingAGroup) - - [addGroup](#addGroup) - - [setLauncher](#setLauncher) - - [setFlags](#setFlags) + - [addGroup](#addgroup) + - [setLauncher](#setlauncher) + - [setLauncherRaw](#setlauncherraw) + - [setFlags](#setflags) - [Adding Entries](#AddingEntries) - [add](#add) - - [addF](#addF) - - [addName](#addName) - - [addNameF](#addNameF) - - [addR](#addR) + - [addF](#addf) + - [addName](#addname) + - [addNameF](#addnamef) + - [addR](#addr) - [hide](#hide) - - [hideFile](#hideFile) -- [Settings](#Settings) - - [autoAlias](#autoAlias) - - [foldCase](#foldCase) + - [hideFile](#hidefile) +- [Settings](#settings) + - [autoAlias](#autoalias) + - [foldCase](#foldcase) - [sort](#sort) -- [Example](#Example) +- [Example](#example) ## Creating a Group <a name="CreatingAGroup"></a> @@ -38,6 +39,12 @@ tml will not work without any groups, so you will need to know how to create a g `setLauncher` will set a group's launching application. If no launching application is specified for a group, tml will treat each entry in that group as an executable file. If there is a space in the path to the launching application, it must be written in quotes (ex. "/usr/bin/my launcher"). *Keep in mind that the path to the launching application should be absolute*. +### setLauncherRaw + +- **setLauncherRaw** *group* */path/to/launcher* + +`setLauncherRaw` is identical to `setLauncher` with the exception that the launcher application specified will not be wrapped in quotes for the system call when a member of the group is launched. This can be used to specify more complex launching instructions. + ### setFlags - **setFlags** *group* *flags* |