mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
10 lines
385 B
SQL
Executable File
10 lines
385 B
SQL
Executable File
INSERT IGNORE INTO settings (section, subsection, name, value, hint, setting)
|
|
VALUES (
|
|
'tmux',
|
|
'running',
|
|
'exit',
|
|
0,
|
|
'Determines if the running tmux monitor script should exit. If 0 nothing changes; if positive the script should exit gracefully (allowing all panes to finish); if negative the script should die as soon as possible.',
|
|
'tmux.running.exit'
|
|
);
|