diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-03-05 12:31:19 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-03-05 12:31:19 +0100 |
commit | c464ed60ff355be8c686f9bfc88dbba468217d43 (patch) | |
tree | 02fbf4f1e9344aff4732033f97f781a807c4b784 /bin/guiscripts | |
parent | 0471aaf80260bf074fcbcd196fff26855cc67b19 (diff) |
moved keybinds back in zk.lua
Diffstat (limited to 'bin/guiscripts')
-rwxr-xr-x | bin/guiscripts/dmpdf | 2 | ||||
-rwxr-xr-x | bin/guiscripts/dmvid | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/guiscripts/dmpdf b/bin/guiscripts/dmpdf index cf1f0dd..b13eba9 100755 --- a/bin/guiscripts/dmpdf +++ b/bin/guiscripts/dmpdf @@ -1,6 +1,6 @@ #!/bin/bash -find ${1:-~/docs ~/Downloads} 2> /dev/null | grep -E ".+\.pdf" | sort > /tmp/dmpdf +find ${1:-~/docs ~/dl} 2> /dev/null | grep -E ".+\.pdf" | sort > /tmp/dmpdf choice="$(\ sed 's|^/home/aluc|\~| ; s|\([^/]\)[^/]*/|\1/|g' /tmp/dmpdf \ | awk '{printf "%s %s\n", NR ":", $0}' \ diff --git a/bin/guiscripts/dmvid b/bin/guiscripts/dmvid index ee7f865..16e164f 100755 --- a/bin/guiscripts/dmvid +++ b/bin/guiscripts/dmvid @@ -1,6 +1,6 @@ #!/usr/bin/env bash -find ${1:-~/movies ~/Downloads} 2> /dev/null | grep -E ".+\.(webm|mp4|mpeg|mkv)$" | sort > /tmp/dmvids +find ${1:-~/vids ~/dl} 2> /dev/null | grep -E ".+\.(webm|mp4|mpeg|mkv)$" | sort > /tmp/dmvids choice="$(\ sed 's|^/home/aluc|\~| ; s|\([^/]\)[^/]*/|\1/|g' /tmp/dmvids \ | awk '{printf "%s %s\n", NR ":", $0}' \ |