diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2022-09-21 04:52:09 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2022-09-21 04:52:09 +0300 |
commit | eab21d585158c8df4d715e9d622bd949d9f4343e (patch) | |
tree | 4bf3163e8da6c6d7623c15ec24812cbb801301b6 /vid | |
parent | 65e3c9e636ac0780fe46d27292e0abd37aa89b02 (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" |