diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-10-27 14:50:25 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-10-27 14:50:25 +0200 |
| commit | cbf6250f08bda1c6df0cf2a5560a2a0921f281c3 (patch) | |
| tree | 033f7fd09770c66ef328071de1ad57ae379ff56d /scripts/.scripts/youtube.sh | |
| parent | 28a4b1bc9f9e7650178af5532474e5172ee89d1a (diff) | |
| download | dotfiles-cbf6250f08bda1c6df0cf2a5560a2a0921f281c3.tar.xz dotfiles-cbf6250f08bda1c6df0cf2a5560a2a0921f281c3.zip | |
Added a sane minimal vim config and also added a new script to watch youtube on mpv and added some keymaps to fix typos when saving and quitting neovim
Diffstat (limited to 'scripts/.scripts/youtube.sh')
| -rwxr-xr-x | scripts/.scripts/youtube.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/.scripts/youtube.sh b/scripts/.scripts/youtube.sh index 43921b3..6bae0f7 100755 --- a/scripts/.scripts/youtube.sh +++ b/scripts/.scripts/youtube.sh @@ -1,6 +1,6 @@ #!/bin/sh -youtube_link=$(: | dmenu -p "Youtube link: ") -quality=$(echo -e "1080p\n720p\n480p\n360p" | dmenu -i -l 4) +youtube_link=$(xclip -o) +# quality=$(echo -e "1080p\n720p\n480p\n360p" | dmenu -i -l 4) -mpv --profile="$quality" "$youtube_link" 2>/dev/null +mpv --profile="720p" "$youtube_link" 2>/dev/null |
