Skip to content

Commit

Permalink
�[1;32m==> added : .gitignore �[0m
Browse files Browse the repository at this point in the history
    �[1;32m==> added : README.md �[0m
    �[1;32m==> added : git-push.sh �[0m
    �[1;32m==> added : preview.png �[0m
    �[1;32m==> added : src/ �[0m
  • Loading branch information
mmsaeed509 committed Oct 31, 2024
0 parents commit e21bdcb
Show file tree
Hide file tree
Showing 23 changed files with 912 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
.venv
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# About Exodia OS App

![](./preview.png)

# Contributing

- Fork the repo
- create a new branch with your **_username_** `dev-${GITHUB-USERNAME}` name (e.g. `dev-mmsaeed509`)
- ```bash
git checkout -b dev-mmsaeed509
```
- commit your changes
- ```bash
./git-push.sh -m "your commit msg"
```
- create a pull request
203 changes: 203 additions & 0 deletions git-push.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
#!/bin/bash

#####################################
# #
# @author : 00xWolf #
#  GitHub : @mmsaeed509 #
#  Developer : Mahmoud Mohamed #
# 﫥 Copyright : Exodia OS #
# #
#####################################

## ------------ COLORS ------------ ##

# Reset #
RESET_COLOR='\033[0m' # Text Reset

# Regular Colors #
Black='\033[0;30m' Red='\033[0;31m' Green='\033[0;32m' Yellow='\033[0;33m'
Blue='\033[0;34m' Purple='\033[0;35m' Cyan='\033[0;36m' White='\033[0;37m'

# Bold #
BBlack='\033[1;30m' BRed='\033[1;31m' BGreen='\033[1;32m' BYellow='\033[1;33m'
BBlue='\033[1;34m' BPurple='\033[1;35m' BCyan='\033[1;36m' BWhite='\033[1;37m'

# Underline #
UBlack='\033[4;30m' URed='\033[4;31m' UGreen='\033[4;32m' UYellow='\033[4;33m'
UBlue='\033[4;34m' UPurple='\033[4;35m' UCyan='\033[4;36m' UWhite='\033[4;37m'

# Background #
On_Black='\033[40m' On_Red='\033[41m' On_Green='\033[42m' On_Yellow='\033[43m'
On_Blue='\033[44m' On_Purple='\033[45m' On_Cyan='\033[46m' On_White='\033[47m'

# High Intensity #
IBlack='\033[0;90m' IRed='\033[0;91m' IGreen='\033[0;92m' IYellow='\033[0;93m'
IBlue='\033[0;94m' IPurple='\033[0;95m' ICyan='\033[0;96m' IWhite='\033[0;97m'

# Bold High Intensity #
BIBlack='\033[1;90m' BIRed='\033[1;91m' BIGreen='\033[1;92m' BIYellow='\033[1;93m'
BIBlue='\033[1;94m' BIPurple='\033[1;95m' BICyan='\033[1;96m' BIWhite='\033[1;97m'

# High Intensity backgrounds #
On_IBlack='\033[0;100m' On_IRed='\033[0;101m' On_IGreen='\033[0;102m' On_IYellow='\033[0;103m'
On_IBlue='\033[0;104m' On_IPurple='\033[0;105m' On_ICyan='\033[0;106m' On_IWhite='\033[0;107m'

echo ""
echo -e "${BCyan}#############################${RESET_COLOR}"
echo -e "${BCyan}# Git Push Script #${RESET_COLOR}"
echo -e "${BCyan}#############################${RESET_COLOR}"

# get branch name (e.g master, main, etc... ) #
DEFAULT_BRANCH=$(git branch --show-current)
TARGET_BRANCH=${DEFAULT_BRANCH}

# get default commit message based on changes #
DEFAULT_COMMIT_MSG=""

# IFS -> Internal Field Separator
# IFS in Bash. It is a special variable that determines how Bash recognizes word boundaries.
# By default, IFS is set to space, tab, and newline characters.
while IFS=$'\n' read -r -d '' line;

do

status=$(echo "$line" | awk '{print $1}')
file=$(echo "$line" | awk '{$1=""; print $0}' | sed -e 's/^[ \t]*//')

case "$status"

in

D)
# Deleted #
DEFAULT_COMMIT_MSG+=" ${BRed}==> deleted : $file${RESET_COLOR}"
DEFAULT_COMMIT_MSG+=""

;;

M)
# Modified #
DEFAULT_COMMIT_MSG+=" ${BCyan}==> modified : $file ${RESET_COLOR}"
DEFAULT_COMMIT_MSG+=""

;;

\?\?)

# Added #
DEFAULT_COMMIT_MSG+=" ${BGreen}==> added : $file ${RESET_COLOR}"
DEFAULT_COMMIT_MSG+=""

;;

esac

# Add a newline character after each line #
DEFAULT_COMMIT_MSG+="\n"

done < <(git status -s -z)

# Remove the trailing comma and space, if any #
DEFAULT_COMMIT_MSG=$(echo -e "$DEFAULT_COMMIT_MSG" | sed 's/, $//' | tr '\\' '\n')

# If no changes detected, use a default message #
if [ -z "$DEFAULT_COMMIT_MSG" ];

then

DEFAULT_COMMIT_MSG=" ==> NO changes"

fi

echo -e "\n${BRed}[*] Your Current Branch : ${BYellow}${DEFAULT_BRANCH}${RESET_COLOR}"

# get new updates if it founded #
echo -e "\n${BPurple}[+] Updating Repo... \n${RESET_COLOR}"
git pull

echo -e "\n${BPurple}[+] The new changes in the repo:\n\n${BYellow}${DEFAULT_COMMIT_MSG}${RESET_COLOR}"

# Loop through all arguments #
while [[ $# -gt 0 ]];

do

case "$1" in

-t|--target-branch)
TARGET_BRANCH="$2"
shift 2
;;

-m|--commit-msg)
DEFAULT_COMMIT_MSG="$2"
shift 2
;;

--create-pr)
CREATE_PR=true
TARGET_PR_BRANCH="$2"
shift 2
;;

*)
# Ignore unrecognized options #
shift
;;

esac

done

echo -e "\n${BRed}[+] Target Branch : ${BYellow}${TARGET_BRANCH}${RESET_COLOR}"
if [ "${TARGET_BRANCH}" != "${DEFAULT_BRANCH}" ];

then

if git show-ref --verify --quiet "refs/heads/${TARGET_BRANCH}";

then

echo -e "${BBlue} └──> Changing to the Target Branch: ${BYellow}${TARGET_BRANCH}${RESET_COLOR}"
git checkout ${TARGET_BRANCH}

else

echo -e "${BBlue} └──> Creating and changing to the Target Branch: ${BYellow}${TARGET_BRANCH}${RESET_COLOR}"
git checkout -b ${TARGET_BRANCH}

fi

fi


echo -e "\n${BPurple}[+] Adding new changes to the repo... \n${RESET_COLOR}"
git add --all .

# Check for a custom commit message #
if [ -n "${DEFAULT_COMMIT_MSG}" ];

then

echo ""
git commit -m "${DEFAULT_COMMIT_MSG}"

fi

# push to Target Branch #
echo ""
git push -u origin ${TARGET_BRANCH}

# Check and create a pull request #
if [ "${CREATE_PR}" == true ] && [ -n "${TARGET_PR_BRANCH}" ];

then

echo -e "\n${BBlue}[+] Creating a pull request from ${BRed}${TARGET_BRANCH} ${BBlue}to ${BYellow}${TARGET_PR_BRANCH}...${RESET_COLOR}"
gh pr create --base ${TARGET_PR_BRANCH} --head ${TARGET_BRANCH} --title "Pull Request: ${TARGET_BRANCH} to ${TARGET_PR_BRANCH}" --body "Please review and merge."

fi


# D O N E! #
echo -e "\n${BGreen}[✔] D O N E \n${RESET_COLOR}"
Binary file added preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions src/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#
# Maintainer: Mahmoud Mohamed (00xWolf) <[email protected]> , <https://github.com/mmsaeed509>
#

pkgname=about-exodia-os
pkgver=2.0
pkgrel=3
pkgdesc="About Exodia OS"
url="https://github.com/Exodia-OS/exodia-apps"
arch=('any')
license=('GPL3')
makedepends=()
groups=('exodia-apps')
depends=('yad')
conflicts=()
provides=("${pkgname}")
options=(!strip !emptydirs)
install=${pkgname}.install

prepare() {

cp -af ../files/. ${srcdir}

}

package() {

(find about-exodia-os -type f -exec install -Dm 644 "{}" "$pkgdir/usr/share/exodia/{}" \;)
install -Dm 644 ${srcdir}/about-exodia-os.desktop ${pkgdir}/usr/share/applications/about-exodia-os.desktop
install -Dm 755 ${srcdir}/${pkgname}/about-exodia-os ${pkgdir}/usr/local/bin/about-exodia-os

}
61 changes: 61 additions & 0 deletions src/about-exodia-os.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#####################################
# #
# @author : 00xWolf #
#  GitHub : @mmsaeed509 #
#  Developer : Mahmoud Mohamed #
# 﫥 Copyright : Mahmoud Mohamed #
# #
#####################################

## ------------ COLORS ------------ ##

# Reset #
RESET_COLOR='\033[0m' # Text Reset

# Regular Colors #
Black='\033[0;30m' Red='\033[0;31m' Green='\033[0;32m' Yellow='\033[0;33m'
Blue='\033[0;34m' Purple='\033[0;35m' Cyan='\033[0;36m' White='\033[0;37m'

# Bold #
BBlack='\033[1;30m' BRed='\033[1;31m' BGreen='\033[1;32m' BYellow='\033[1;33m'
BBlue='\033[1;34m' BPurple='\033[1;35m' BCyan='\033[1;36m' BWhite='\033[1;37m'

# Underline #
UBlack='\033[4;30m' URed='\033[4;31m' UGreen='\033[4;32m' UYellow='\033[4;33m'
UBlue='\033[4;34m' UPurple='\033[4;35m' UCyan='\033[4;36m' UWhite='\033[4;37m'

# Background #
On_Black='\033[40m' On_Red='\033[41m' On_Green='\033[42m' On_Yellow='\033[43m'
On_Blue='\033[44m' On_Purple='\033[45m' On_Cyan='\033[46m' On_White='\033[47m'


## Installing python Packages ##
post_install() {

source /usr/local/share/pip/bin/activate

echo -e ${Green}"\n[*] Installing python Packages.\n" ${RESET_COLOR}

cd /usr/share/exodia/about-exodia-os

DIR=$(pwd)

echo -e "${DIR}"

pip install -r libs.txt

echo -e ${Green}"\n[✔] DONE!\n" ${RESET_COLOR}


}


## Updating python Packages ##
post_upgrade() {

post_install

echo -e ${BBlue}" ==> Updating ${BPurple}pip ${BBlue}environment." ${RESET_COLOR}
pip install --upgrade pip

}
7 changes: 7 additions & 0 deletions src/files/about-exodia-os.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[Desktop Entry]
Name=About Exodia OS
Comment=About Exodia OS
Exec=about-exodia-os
Icon=exodia-yellow
Type=Application
Categories=System;
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/files/about-exodia-os/Fonts/Squares-Bold.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/files/about-exodia-os/Fonts/Squares-Light.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/files/about-exodia-os/Fonts/Squares-Thin.otf
Binary file not shown.
11 changes: 11 additions & 0 deletions src/files/about-exodia-os/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#####################################
# #
# @author : 00xWolf #
#  GitHub : @mmsaeed509 #
#  Developer : Mahmoud Mohamed #
# 﫥 Copyright : Exodia OS #
# #
#####################################

def main_window():
return None
20 changes: 20 additions & 0 deletions src/files/about-exodia-os/about-exodia-os
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash

#####################################
# #
# @author : 00xWolf #
#  GitHub : @mmsaeed509 #
#  Developer : Mahmoud Mohamed #
# 﫥 Copyright : Exodia OS #
# #
#####################################

# About Exodia OS #

# path to files #
FILES_PATH="/usr/share/exodia/about-exodia-os"
# shellcheck disable=SC2034
FILES_PATH_TESTING=$(pwd)

# Run the app #
python3 "${FILES_PATH}"/main_window.py
Binary file added src/files/about-exodia-os/imgs/Ozil.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/files/about-exodia-os/libs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PyQt5
PyQt5-stubs
python-xlib
Loading

0 comments on commit e21bdcb

Please sign in to comment.