chore(tmux): cleanup tmux scripts

This commit is contained in:
2026-03-10 00:55:03 +01:00
parent 42a1672fb0
commit a47d944286
4 changed files with 23 additions and 32 deletions

View File

@@ -6,8 +6,6 @@ if [[ -z ${NAME:+x} ]]; then
exit 1
fi
source "$XDG_CONFIG_HOME/zsh/scripts.zsh"
read -p "name: " project_name
if [[ -z $project_name ]]; then
@@ -19,7 +17,7 @@ if [[ -d "$GGROOT/no-remote/$project_name" ]]; then
fi
project="$GGROOT/no-remote/$project_name"
git init $project
git init "$project"
echo "# $project_name" >>"$project/README.md"
gitignore_template=$(
@@ -28,7 +26,7 @@ gitignore_template=$(
| fzf --cycle --bind 'tab:toggle-up,btab:toggle-down'
)
if ! [[ -z $gitignore_template ]]; then
if [[ -n $gitignore_template ]]; then
gitignore="$GGROOT/github.com/github/gitignore/$gitignore_template.gitignore"
echo "$gitignore"
echo "$project/.gitignore"
@@ -41,10 +39,8 @@ license_template=$(
| fzf --cycle --bind 'tab:toggle-up,btab:toggle-down'
)
if ! [[ -z $license_template ]]; then
if [[ -n $license_template ]]; then
license="$GGROOT/git.janezic.dev/janezicmatej/license/$license_template.license"
export YEAR="$(date '+%Y')"
envsubst <"$license" >"$project/LICENSE"
fi
ggcompile