Skip to content

Commit ff83afe

Browse files
feat: added ASCII Titles for logo
1 parent 174c20d commit ff83afe

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

headers/commands.h

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,14 @@ int quickoverflow_search(char **args)
101101
//*****************************************sos*********************************************** */
102102
int quickoverflow_help(char **args){
103103
int i;
104-
printf("--------------------------------QuickOverflow-----------------------------\n");
104+
printf(" \n"
105+
" _____ _ _ _____ __ _ \n"
106+
"| _ | (_) | | | _ | / _| | \n"
107+
"| | | |_ _ _ ___| | _| | | |_ _____ _ __| |_/| | _____ __\n"
108+
"| | | | | | | |/ __| |/ / | | \\ \\ / / _ \\ '__| _| |/ _ \\ \\ /\\ / /\n"
109+
"\\ \\/' / |_| | | (__| <\\ \\_/ /\\ V / __/ | | | | | (_) \\ V V / \n"
110+
" \\_/\\_\\\\__,_|_|\\___|_|\\_\\\\___/ \\_/ \\___|_| |_| |_|\\___/ \\_/\\_ \n"
111+
" \n");
105112
printf("---------------------------------Version 2.0.0----------------------------\n");
106113
printf("Type program names and arguments, and hit enter.\n");
107114
printf("The following are built in:\n");
@@ -122,7 +129,14 @@ int quickoverflow_quit(char **args){
122129
//**************************************about (ofc credits)************************************* */
123130

124131
int quickoverflow_about(char **args){
125-
printf("-------------------------------QuickOverflow-----------------------------------\n");
132+
printf(" \n"
133+
" _____ _ _ _____ __ _ \n"
134+
"| _ | (_) | | | _ | / _| | \n"
135+
"| | | |_ _ _ ___| | _| | | |_ _____ _ __| |_/| | _____ __\n"
136+
"| | | | | | | |/ __| |/ / | | \\ \\ / / _ \\ '__| _| |/ _ \\ \\ /\\ / /\n"
137+
"\\ \\/' / |_| | | (__| <\\ \\_/ /\\ V / __/ | | | | | (_) \\ V V / \n"
138+
" \\_/\\_\\\\__,_|_|\\___|_|\\_\\\\___/ \\_/ \\___|_| |_| |_|\\___/ \\_/\\_ \n"
139+
" \n");
126140
printf("Version: 2.0.0\n");
127141
printf("License: GNU GPL-3 License\n");
128142
printf("Author: Aryan Karamtoth (SpaciousCoder78)\n");

install.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,8 @@
33
pip3 install -r requirements.txt --break-system-packages
44

55
mkdir -p bin
6-
gcc -I/usr/include/python3.12 main.c -lpython3.12 -o bin/QuickOverflow
7-
8-
#read -p "Enter the download path of the source: " $DLPATH
9-
10-
#echo "You mentioned $DLPATH as your app source"
116

12-
#chmod +x search.py
13-
14-
#cd $HOME && mkdir bin
15-
16-
#mv "$DLPATH" "$HOME/bin/"
7+
gcc -I/usr/include/python3.12 main.c -lpython3.12 -o bin/QuickOverflow
178

18-
#export PATH="$HOME/bin:$PATH"
199

2010

search.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pyoverflow3.pyoverflow3 import pyoverflow3
44

5-
# Update: 1.1.0 - Added automatic error searching from terminal
5+
# Update: 2.0.0 - Added automatic error searching from terminal
66
import subprocess,shlex
77

88
#pysearch is a tool to debug incoming errors from python scripts

0 commit comments

Comments
 (0)