Add explicit / after path element when searching themes.

This commit is contained in:
Dave Davenport 2016-11-28 19:47:06 +01:00
parent c6c7152b6e
commit ab9330521b
1 changed files with 2 additions and 1 deletions

View File

@ -70,9 +70,10 @@ function find_themes()
# Add user dir.
DIRS+=":${HOME}/.local/share/"
for p in ${DIRS}; do
TD=${p}rofi/themes/
TD=${p}/rofi/themes/
if [ -n "${p}" ] && [ -d "${TD}" ]
then
echo "Checking themes in: ${TD}"
for file in ${TD}/*.theme
do
if [ -f "${file}" ]