Skip to content

Commit

Permalink
Merge pull request #79 from anakojm/Alphabetical-order
Browse files Browse the repository at this point in the history
Fix #78, use alphabetical order
  • Loading branch information
Biont committed Sep 15, 2023
2 parents 7a9a71b + 8fe172b commit c8afcb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sway-launcher-desktop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ function list-entries() {
DIRS[$i]="${DIRS[i]}/applications/**/*.desktop"
fi
done

# shellcheck disable=SC2068
entries ${DIRS[@]}
entries ${DIRS[@]} | sort -k2
}
function entries() {
# shellcheck disable=SC2068
Expand Down

0 comments on commit c8afcb8

Please sign in to comment.