Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 07ba2ba

Browse files
committed
Local Push on Boot
1 parent 2aa44b2 commit 07ba2ba

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

home/.startup.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Clear Screen
22
clear
33

4+
# Check Update Dotfiles
5+
cd ~/Dotfiles
6+
if [[ $(sudo git diff | wc -l) -ne 0 ]]; then
7+
sudo git add .
8+
sudo git commit -m "Local Push on Boot"
9+
sudo git push
10+
fi
11+
412
# Start Hyprland
513
Hyprland &>/dev/null

0 commit comments

Comments
 (0)