summaryrefslogtreecommitdiff
path: root/vid
diff options
context:
space:
mode:
authortsxv478 <atvx717@infraredcombat.xyz>2022-11-13 04:17:20 +0300
committertsxv478 <atvx717@infraredcombat.xyz>2022-11-13 04:17:20 +0300
commit4a42c6030946971124fc4b7d7d5337ad70979a95 (patch)
tree1129eedfa9ed13974257c95ea6e66aa85a472da7 /vid
parent3e0ee3784ae3066c969fc4340fe330adecb45c34 (diff)
minor fixes
Diffstat (limited to 'vid')
-rwxr-xr-xvid6
1 files changed, 3 insertions, 3 deletions
diff --git a/vid b/vid
index 9575f07..cabc315 100755
--- a/vid
+++ b/vid
@@ -1,6 +1,6 @@
#!/bin/sh
-path="$HOME/vid"
-video=$(find $path -type f | cut -d '/' -f '5-' | dmenu -i -c -l 15 -p "Play video:")
+dir="$HOME/vid"
+video=$(find $dir -type f | cut -d '/' -f '5-' | dmenu -i -c -l 15 -p "Play video:")
-[ -f "$path/$video" ] && mpv --really-quiet "$path/$video"
+[ -f "$dir/$video" ] && mpv --really-quiet "$dir/$video"