Skip to content

Commit

Permalink
Add awesome
Browse files Browse the repository at this point in the history
  • Loading branch information
heussd committed Apr 21, 2024
1 parent 425e7a3 commit a814950
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .scripts/awesome
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

AWESOME=$TH_PROJECTS_FOLDER/awesome-templates/

template=$(find "$AWESOME" \
-maxdepth 1 \
-not -path '*/.*' \
-not -path '*/' \
| fzf)

if [ -n "$template" ]; then
cp -Rv -n "$template"/. .
fi

0 comments on commit a814950

Please sign in to comment.