diff options
author | tsxv478 <vt0451@yandex.ru> | 2022-09-21 04:52:09 +0300 |
---|---|---|
committer | tsxv478 <vt0451@yandex.ru> | 2022-09-21 04:52:09 +0300 |
commit | 8938c8c1cbd37d8b6684c073e5eccf4129ce0e55 (patch) | |
tree | 4bf3163e8da6c6d7623c15ec24812cbb801301b6 /vid | |
parent | bdfb0a131167c1e582828b365385e5e357d28f95 (diff) |
increase number of dmenu lines
Diffstat (limited to 'vid')
-rwxr-xr-x | vid | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #!/bin/sh path="$HOME/vid" -video=$(find $path -type f | cut -d '/' -f '5-' | dmenu -i -c -bw 3 -l 10 -p "Play video:") +video=$(find $path -type f | cut -d '/' -f '5-' | dmenu -i -c -bw 3 -l 15 -p "Play video:") [ -f "$path/$video" ] && mpv --really-quiet "$path/$video" |