-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathexample.toml
71 lines (65 loc) · 2.22 KB
/
example.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Configuration for Tinty
# https://github.com/tinted-theming/tinty
#
# This file is optional, but there is limited tinty functionality
# without customization of this config.toml
#
# This file should contain a `[[items]]` section for each application
# you want themed. You can also set a `shell` value which is used in
# Tinty when running shell commands. `shell` is also used when executing
# `hook`s provided in this config file Check tinty repository for more
# information and examples.
# Explanation and default values for keys:
# # Through which shell command hooks will run. The command will be replaced in '{}'
# shell = "sh -c '{}'"
# # Default scheme to apply if a previously set scheme doesn't exist.
# # Used specifically in the `tinty init` subcommand.
# default-scheme = "base16-mocha"
#
# [[items]]
# # Path to template repository. Can be a URL, absolute path or path
# # beginning with `~/`.
# path = "https://github.com/tinted-theming/tinted-shell"
# # Unique name of item
# name = "tinted-shell"
# # Name of the repository directory containing the theme files
# themes-dir = "scripts"
# # (Optional) Command to execute after copying template (goes through `shell`)
# hook = ""
# # (Optional) supported scheme system of template. Some templates
# # could support multiple scheme systems.
# supported-systems = ["base16", "base24"]
# Example file. For shell, tmux, fzf, waybar and sway. Runs hooks
# through zsh:
# shell = "zsh -c '{}'"
# default-scheme = "base16-oceanicnext"
#
# [[items]]
# path = "https://github.com/tinted-theming/tinted-shell"
# name = "tinted-shell"
# hook = ". %f"
# themes-dir = "scripts"
#
# [[items]]
# path = "https://github.com/tinted-theming/base16-tmux"
# name = "base16-tmux"
# themes-dir = "colors"
# hook = "test -n \"$TMUX\" && tmux source-file %f"
#
# [[items]]
# path = "https://github.com/tinted-theming/base16-fzf"
# name = "fzf"
# themes-dir = "bash"
# hook = ". %f"
#
# [[items]]
# path = "https://github.com/tinted-theming/base16-waybar"
# name = "base16-waybar"
# themes-dir = "colors"
# hook = "cp -r %f ~/.config/waybar/colors.css"
#
# [[items]]
# path = "https://github.com/rkubosz/base16-sway"
# name = "base16-sway"
# themes-dir = "themes"
# hook = "cat %f > ~/.config/sway/config && swaymsg reload"