I recently started using Notifications in Chrome and noticed that they aren’t showing when I’m using other app in fullscreen, for example playing video with mpv. I’d like to them to show whenever though, so I can quickly know whats happening. I’m on Windows 10, tried disabling focus assist and […]
Daily Archives: August 15, 2023
11 posts
I have created following script I’ve been using on Arch Linux to stream the camera feed to OBS #!/usr/bin/env bash set -euo pipefail sudo modprobe v4l2loopback exclusive_caps=1 max_buffer=2 gphoto2 --stdout --set-config viewfinder=1 --capture-movie | ffmpeg -i - -vcodec copy -threads 1 -f v4l2 "/dev/$(ls -1 /sys/devices/virtual/video4linux)" Since I’ve switched to […]