mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
16 lines
347 B
Bash
16 lines
347 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
wai=$(dirname $(readlink -f $0))
|
||
|
theme_loc="${wai}/../themes/"
|
||
|
git_root=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
for shot in ${theme_loc}/*.jpg
|
||
|
do
|
||
|
name=$(basename ${shot})
|
||
|
name=${name%.*}
|
||
|
shot_path=$(realpath --relative-to="${git_root}" "${theme_log}/${shot}")
|
||
|
|
||
|
echo -e "${name}"':\n\n'
|
||
|
|
||
|
done
|