1
0

Hyprland stuff and some new scripts

This commit is contained in:
2025-04-03 18:42:13 +02:00
parent 7d010f25de
commit 73bb89330a
15 changed files with 463 additions and 11 deletions

1
Scripts/editPost.sh Executable file
View File

@ -0,0 +1 @@
nvim "$HOME/myHome/Projects/Blog/src/content/posts/$1.md"

7
Scripts/newPost.sh Executable file
View File

@ -0,0 +1,7 @@
CURRENT_PATH=$(pwd)
cd $HOME/myHome/Projects/Blog
pnpm new-post "$1"
cd $CURRENT_PATH

9
Scripts/pushBlog.sh Executable file
View File

@ -0,0 +1,9 @@
CURRENT_PATH=$(pwd)
cd $HOME/myHome/Projects/Blog
git add .
git commit -m "$1"
git push
cd $CURRENT_PATH