refactor
This commit is contained in:
parent
61a4a9bdcd
commit
47f77c0235
3 changed files with 43 additions and 7 deletions
|
@ -328,11 +328,11 @@ Usage: `mpv [options] [file|URL|PLAYLIST|-]`
|
||||||
[URL](../../internet/URL.md) of the HTTP/HTTPS proxy. If this is set, the `http_proxy` environment is ignored. The `no_proxy` environment variable is still respected. This option is silently ignored if it does not start with `http://`. Proxies are not used for https URLs. Setting this option does not try to make the ytdl script use the proxy.
|
[URL](../../internet/URL.md) of the HTTP/HTTPS proxy. If this is set, the `http_proxy` environment is ignored. The `no_proxy` environment variable is still respected. This option is silently ignored if it does not start with `http://`. Proxies are not used for https URLs. Setting this option does not try to make the ytdl script use the proxy.
|
||||||
|
|
||||||
## Video Filters
|
## Video Filters
|
||||||
#todo -> $ mpv -vf=help
|
#refactor -> $ mpv -vf=help
|
||||||
To see a list of all available video filters: `mpv -vf=help`
|
To see a list of all available video filters: `mpv -vf=help`
|
||||||
|
|
||||||
## Audio Filters
|
## Audio Filters
|
||||||
#todo -> $ mpv -af=help
|
#refactor -> $ mpv -af=help
|
||||||
To see a list of all available audio filters: `mpv -af=help`
|
To see a list of all available audio filters: `mpv -af=help`
|
||||||
|
|
||||||
## Encoding
|
## Encoding
|
||||||
|
@ -368,10 +368,10 @@ Each line maps a key to an input command. Keys are specified with their literal
|
||||||
Syntax: `[Shift+][Ctrl+][Alt+][Meta+]<key> [{<section>}] <command> ( ; <command> )*`
|
Syntax: `[Shift+][Ctrl+][Alt+][Meta+]<key> [{<section>}] <command> ( ; <command> )*`
|
||||||
|
|
||||||
### List of Input Commands
|
### List of Input Commands
|
||||||
#todo -> https://mpv.io/manual/stable/#list-of-input-commands
|
#refactor -> https://mpv.io/manual/stable/#list-of-input-commands
|
||||||
|
|
||||||
### List of Properties
|
### List of Properties
|
||||||
#todo -> https://mpv.io/manual/stable/#property-list
|
#refactor -> https://mpv.io/manual/stable/#property-list
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
You can put all of the options in configuration files which will be read every time mpv is run. The system-wide configuration file 'mpv.conf' is in your configuration directory (e.g. `/etc/mpv` or `/usr/local/etc/mpv`), the user-specific one is `~/.config/mpv/mpv.conf`.
|
You can put all of the options in configuration files which will be read every time mpv is run. The system-wide configuration file 'mpv.conf' is in your configuration directory (e.g. `/etc/mpv` or `/usr/local/etc/mpv`), the user-specific one is `~/.config/mpv/mpv.conf`.
|
||||||
|
|
|
@ -4,4 +4,40 @@ website: https://tailwindcss.com
|
||||||
---
|
---
|
||||||
|
|
||||||
# Tailwind CSS
|
# Tailwind CSS
|
||||||
#wip #🐇 #notnow
|
Tailwind CSS is a utility-first CSS framework that provides a set of low-level utility classes to build designs directly in your markup. It's a highly customizable and efficient way to create modern, responsive user interfaces.
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
To use TailwindCSS include this in your documents header:
|
||||||
|
```html
|
||||||
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Modifiers
|
||||||
|
You can modify when a utility class will become active by using `mod:` before the class name.
|
||||||
|
|
||||||
|
Some modifiers include:
|
||||||
|
- `hover`
|
||||||
|
- `focus`
|
||||||
|
- `active`
|
||||||
|
- `disabled`
|
||||||
|
- `invalid`
|
||||||
|
- `first`
|
||||||
|
- `last`
|
||||||
|
- `even`
|
||||||
|
- `odd`
|
||||||
|
|
||||||
|
This modifier is used for dark mode:
|
||||||
|
- `dark`
|
||||||
|
|
||||||
|
These modifers are used for device orientation:
|
||||||
|
- `landscape`
|
||||||
|
- `portrait`
|
||||||
|
|
||||||
|
These modifers are used for responsive design and reresent their respective screen sizes when a class will become active:
|
||||||
|
- `sm`
|
||||||
|
- `md`
|
||||||
|
- `lg`
|
||||||
|
- `xl`
|
||||||
|
- `2xl`
|
||||||
|
|
||||||
|
For a list of all classes see the [documentation](https://tailwindcss.com/docs).
|
|
@ -1,8 +1,8 @@
|
||||||
# Ansible Modules
|
# Ansible Modules
|
||||||
|
|
||||||
#wip #todo #notnow
|
#wip #refactor #notnow
|
||||||
|
|
||||||
#todo -> explain modules, sort modules by usage cat
|
#refactor -> explain modules, sort modules by usage cat
|
||||||
|
|
||||||
## Builtin
|
## Builtin
|
||||||
- [ansible.builtin.assert](ansible.builtin.assert.md)
|
- [ansible.builtin.assert](ansible.builtin.assert.md)
|
||||||
|
|
Loading…
Reference in a new issue