Touchpad, mpv bindings, floating window
This commit is contained in:
parent
6339a9ef31
commit
bfff2fbfb5
8 changed files with 303 additions and 79 deletions
5
scripts/mpv-url.sh
Executable file
5
scripts/mpv-url.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
url=$(xclip -o -selection clipboard)
|
||||
if [ -n "$url" ]; then
|
||||
mpv "$url"
|
||||
fi
|
||||
5
scripts/yt-download.sh
Executable file
5
scripts/yt-download.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
url=$(xclip -o -selection clipboard)
|
||||
if [ -n "$url" ]; then
|
||||
cd $HOME/Videos && yt-dlp "$url"
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue