Last updated: February 22, 2026
AWENG MEDIA Dominic Holzinger Email: info@aweng.media
Last updated: February 22, 2026
AWENG MEDIA Dominic Holzinger Email: info@aweng.media
| ZSH_THEME_GIT_PROMPT_PREFIX="(" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX=")" | |
| ZSH_THEME_GIT_PROMPT_DIRTY="*" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="" | |
| PROMPT='%{$fg[green]%}%n@%m%{$reset_color%}' | |
| PROMPT+=':' | |
| PROMPT+='%{$fg[blue]%}%~%{$reset_color%}' | |
| PROMPT+='$(git_prompt_info)' | |
| PROMPT+='\$ ' |
The following JavaScript code locates the first video element on the page, removes the attributes that may be blocking the PIP feature, and attempts to open the video in picture-in-picture mode.
var v = document.getElementsByTagName("video").item(0);
v.removeAttribute("disablepictureinpicture");
v.requestPictureInPicture();