A collection of scripts
1# description 2thm is a shell script that applies colors to a template file. 3 4# usage 5thm theme_name 6 7the theme_name does not include the `.theme` at the end of the file. 8 9# directories 10By default, the config files will be searched for in `$XDG_CONFIG_HOME/thm` or `$HOME/.config/thm`. 11The generated files will be placed in either `$XDG_CACHE_HOME/thm` or `$HOME/.cache/thm`. This can 12be changed by setting the environment variables `THM_CONFIG_DIR` and `THM_DEST_DIR`. The dest dir 13is cleared while running. 14 15# inside config directory 16The themes directory holds shell scripts defining the colors. These files should end with `.theme` 17if they should be usable with thm. The templates directory holds files for generating the themes. 18These files should end with `.template` The scripts directory holds files to be executed after thm 19is finished generating all the files. These files should be executable in order for thm to launch 20them. Examples of these files can be found in the examples directory of this repository.