From a7c48cdd187c23b51e9aac54f4abbdb5c7c24a6f Mon Sep 17 00:00:00 2001 From: louie Date: Wed, 23 Dec 2020 19:05:15 -0800 Subject: Updated documentation to reflect previous commit --- docs/tml-config.md | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) (limited to 'docs/tml-config.md') 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 @@ -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* -- cgit