This commit is contained in:
JMARyA 2024-01-10 11:08:48 +01:00
parent 61a4a9bdcd
commit 47f77c0235
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 43 additions and 7 deletions

View file

@ -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.
## Video Filters
#todo -> $ mpv -vf=help
#refactor -> $ mpv -vf=help
To see a list of all available video filters: `mpv -vf=help`
## Audio Filters
#todo -> $ mpv -af=help
#refactor -> $ mpv -af=help
To see a list of all available audio filters: `mpv -af=help`
## 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> )*`
### 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
#todo -> https://mpv.io/manual/stable/#property-list
#refactor -> https://mpv.io/manual/stable/#property-list
## 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`.

View file

@ -4,4 +4,40 @@ website: https://tailwindcss.com
---
# 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).

View file

@ -1,8 +1,8 @@
# 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
- [ansible.builtin.assert](ansible.builtin.assert.md)