Touchpad, mpv bindings, floating window

This commit is contained in:
Ian Keane 2026-08-08 14:31:15 -04:00
parent 6339a9ef31
commit bfff2fbfb5
8 changed files with 303 additions and 79 deletions

5
scripts/mpv-url.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
url=$(xclip -o -selection clipboard)
if [ -n "$url" ]; then
mpv "$url"
fi