mirror of
https://github.com/lbonn/rofi
synced 2024-11-22 11:53:11 +00:00
fix double slashes in path names
This commit is contained in:
parent
6f63e80b2f
commit
eff0597625
1 changed files with 2 additions and 1 deletions
|
@ -70,7 +70,8 @@ function find_themes()
|
|||
# Add user dir.
|
||||
DIRS+=":${HOME}/.local/share/"
|
||||
for p in ${DIRS}; do
|
||||
TD=${p}/rofi/themes/
|
||||
p=${p%/}
|
||||
TD=${p}/rofi/themes
|
||||
if [ -n "${p}" ] && [ -d "${TD}" ]
|
||||
then
|
||||
echo "Checking themes in: ${TD}"
|
||||
|
|
Loading…
Reference in a new issue