-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.8.0 - wrote some docs, fixed up some minor things so check commit u…
…rself
- Loading branch information
1 parent
e2ab565
commit f321f7c
Showing
23 changed files
with
354 additions
and
219 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Custom commands | ||
|
||
Define custom commands. It can be found in `~/.config/youtube-tui/cmdefine.yml`. | ||
|
||
> This is still a work in progress, perhaps in the future scripting will be allowed to control and interact with elements within the TUI. | ||
```yml | ||
print: echo | ||
pause: mpv sprop pause yes ;; echo mpv Player paused | ||
next: mpv playlist-next ;; echo mpv Skipped | ||
resume: mpv sprop pause no ;; echo mpv Player resumed | ||
search: loadpage search | ||
rc: reload configs | ||
``` | ||
--- | ||
General format: | ||
```yml | ||
new command: original command | ||
``` | ||
This allows for alternative shorthand commands. | ||
<sub>More about commands run `youtube-tui help` or check out [commands](commands.md).</sub> | ||
|
||
> Try not to use self referencing commands, it'll make a mess. |
Oops, something went wrong.