Entire thing on bash script

This commit is contained in:
Pardesi_Cat 2023-10-11 21:11:44 +05:30
commit 1c7898c9b0
Signed by: pardesicat
GPG Key ID: 331A25436287A3CF
10 changed files with 194 additions and 0 deletions

34
DailyDose Normal file
View File

@ -0,0 +1,34 @@
#aa chalke tuje
https://inv.pardesicat.xyz/watch?v=Y_8VmzWOsgs
#coffe house harmonica
https://inv.pardesicat.xyz/watch?v=X0-l_ICrAqI
#me takda rava
https://inv.pardesicat.xyz/watch?v=2SvN8o5Fn1A
#Baazigar_Chhupana
https://inv.pardesicat.xyz/watch?v=X9MB_25XncQ
#bekhabar
https://inv.pardesicat.xyz/watch?v=yidaL9xDlk8
#tere vaaste
https://inv.pardesicat.xyz/watch/?v=X7WXHhokylc
#ek dilruba
https://inv.pardesicat.xyz/watch?v=-UgrS_B53Yc
#mera chad muje
https://inv.pardesicat.xyz/watch?v=DeSa4z6rV9c
#Ae Kash Ke Hum Hosh Mein Ab Movie - Kabhi Haan Kabhi Naa
https://inv.pardesicat.xyz/watch?v=V8B-Sz3X9tU
#krish1
https://inv.pardesicat.xyz/watch?v=GmzXuJPjRtE
#dhoom
https://inv.pardesicat.xyz/watch?v=nChQqMR-zko
https://inv.pardesicat.xyz/watch?v=7jhSVtC6Axs
https://inv.pardesicat.xyz/watch?v=q0loWjfX0d8

9
bin/catboii Executable file
View File

@ -0,0 +1,9 @@
#written by Pardesi_Cat
#!/bin/bash
export PATH="$HOME/APPS/SCRIPTS/:$PATH"
echo ""
exec alacritty -e bash pcat.sh

25
file.sh Normal file
View File

@ -0,0 +1,25 @@
#!/bin/bash
#!written by Pardesi_Cat
echo "Choose your file Manager"
echo
echo "1. polo | 2. thunar"
read fm
if [[ $fm =="1" ]]; then
exec polo-gtk
ifelse
[[ $fm =="2" ]]; then
exec thunar
else
echo "wtf you doing?"
sleep 2
exit 0
fi

24
gaana.sh Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
#!Written by Pardesi_Cat
path="$HOME/APPS/SCRIPTS/"
songs="DailyDose"
export "PATH=$HOME/APPS/SCRIPTS/:$PATH"
sleep 2
if [ -e "$songs" ]; then
echo -e "Playlist Avalable"
echo ""
echo -e "Playing Songs"
echo ""
exec mpv --no-video --playlist="$songs"
else
echo "Sorry no playlist file exists"
sleep 1
exit 0
fi

24
jdsp.sh Executable file
View File

@ -0,0 +1,24 @@
#written by Pardesi_Cat
#!/bin/bash
jdsp="/usr/bin/jamesdsp"
if [ -f $jdsp ]; then
exec alacritty -e jamesdsp &>/dev/null & disown;
else
echo -e "jamesdsp not present"
echo ""
echo "wanna install jamesdsp for pulse (git version)? y/n"
echo ""
echo ""
read ans
if [[ $ans == "y" ]]; then
exec alacritty -e pikaur -S jamesdsp-pulse-git
fi
fi

8
mount.sh Executable file
View File

@ -0,0 +1,8 @@
#!written by Pardesi_Cat
mount --mkdir /dev/sdb4 /run/media/LIBRARY
mount --mkdir /dev/sdc1 /run/media/HDD2/
mount --mkdir /dev/sdb5 /run/media/LINUXGAMES/
echo ""
echo "done"

20
myip.sh Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
#written by pardesi_cat
urll="https://api64.ipify.org"
public_ip=$(curl -s "$urll")
# Print the public IP address
echo -e ""
echo -e "Written by Pardesi_Cat"
echo -e ""
echo -e "checking your public ipv4/ ipv6 ip...."
echo -e ""
sleep 2
echo -e ""
echo -e "your Public IP Address: $public_ip"
echo -e ""
sleep 6

42
pcat.sh Executable file
View File

@ -0,0 +1,42 @@
#!/bin/bash
#Written by Pardesi_cat
dirr="$HOME/APPS/SCRIPTS/"
sleep 1
echo -e "choose your startup script Number (put only number)"
echo ""
echo -e "1.start jamesdsp | 2. screenshot | 3.Test script | 4. mount my drives |"
echo -e
echo -e "5. play your playlist | 6. check your public ip | 7. start file manager"
echo
read ans
if [[ $ans == "1" ]] ; then
cd $dirr
bash jdsp.sh
elif [[ $ans == "2" ]]; then
cd $dirr
bash ss.sh
elif [[ $ans == "3" ]]; then
cd $dirr
bash test.sh
elif [[ $ans == "4" ]]; then
cd $dirr
sudo bash mount.sh
elif [[ $ans == "5" ]]; then
cd $dirr
bash gaana.sh
elif [[ $ans == "6" ]]; then
cd $dirr
exec alacritty -e bash myip.sh
elif [[ $ans == "7" ]]; then
cd $dirr
bash file.sh
else
echo -e "failed"
exit 0
fi

2
ss.sh Executable file
View File

@ -0,0 +1,2 @@
sleep 2
exec flameshot gui

6
test.sh Executable file
View File

@ -0,0 +1,6 @@
ls -a `$PWD`
echo -e "succesfully working"
echo
sleep 2