2020-02-08 18:43:37 -05:00
|
|
|
#!/bin/sh
|
2019-05-31 19:38:43 -04:00
|
|
|
|
|
|
|
# When I open an image from the file manager in sxiv (the image viewer), I want
|
|
|
|
# to be able to press the next/previous keys to key through the rest of the
|
|
|
|
# images in the same directory. This script "rotates" the content of a
|
|
|
|
# directory based on the first chosen file, so that if I open the 15th image,
|
|
|
|
# if I press next, it will go to the 16th etc. Autistic, I know, but this is
|
|
|
|
# one of the reasons that sxiv is great for being able to read standard input.
|
|
|
|
|
2019-03-21 15:02:51 -04:00
|
|
|
[ -z "$1" ] && echo "usage: rotdir regex 2>&1" && exit 1
|
2019-05-31 19:38:43 -04:00
|
|
|
base="$(basename "$1")"
|
2020-08-27 21:55:17 +02:00
|
|
|
ls "$PWD" | awk -v BASE="$base" 'BEGIN { lines = ""; m = 0; } { if ($0 == BASE) { m = 1; } } { if (!m) { if (lines) { lines = lines"\n"; } lines = lines""$0; } else { print $0; } } END { print lines; }'
|