diff --git a/push.sh b/push.sh new file mode 100755 index 0000000..ffd98b8 --- /dev/null +++ b/push.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# Repo Config +REPO=snigdhaos-backgrounds +# Host Config +HOST=https://github.com +# Destination Config +ORG=Snigdha-OS + +# Set the repository URL and branch +REPO_URL="${HOST}/${ORG}/${REPO}.git" +BRANCH="master" # or "master" depending on your repository's default branch + +# Commit message +MESSAGE="@eshanized: push via script" + +# Add all files, commit, and push changes +git add . +git commit -m "$MESSAGE" +git push origin $BRANCH \ No newline at end of file diff --git a/snigdhaos-background-01.jpg b/snigdhaos-background-01.jpg new file mode 100644 index 0000000..28bd0b0 Binary files /dev/null and b/snigdhaos-background-01.jpg differ diff --git a/snigdhaos-background-02.jpg b/snigdhaos-background-02.jpg new file mode 100644 index 0000000..c045f4e Binary files /dev/null and b/snigdhaos-background-02.jpg differ diff --git a/snigdhaos-background-03.jpg b/snigdhaos-background-03.jpg new file mode 100644 index 0000000..5810be9 Binary files /dev/null and b/snigdhaos-background-03.jpg differ