@eshanized updated the repository!!!

This commit is contained in:
Eshan Roy (Eshanized)
2024-04-23 14:31:50 +05:30
parent 9030b227ec
commit 55a88669f6
3 changed files with 36 additions and 0 deletions

View File

View File

@@ -0,0 +1,35 @@
#!/bin/bash
# Install 'Wget' via pacman
sudo pacman -S wget --noconfirm --needed
URL_KEYRING=""
PACKAGE_FILE=""
echo
echo "Downloading Snigdha OS Keyring..."
echo
sudo wget "$URL_KEYRING" -O /tmp/$PACKAGE_FILE
# Installing File Locally
sudo pacman -U --noconfirm --needed /tmp/$PACKAGE_FILE
if grep -q snigdhaos- /etc/pacman.conf; then
echo
echo "Snigdha OS Repository/Mirrorlist already installed!"
echo
else
echo '
[snigdhaos-core]
SigLevel = Never
Include = /etc/pacman.d/snigdhaos-mirrorlist
[snigdhaos-extra]
SigLevel = Never
Include = /etc/pacman.d/snigdhaos-mirrorlist' |
sudo tee --append /etc/pacman.conf
fi
echo
echo "Finished! Now Synchronize DB..."
echo

1
blackbox/ui/GUI.py Normal file
View File

@@ -0,0 +1 @@
#!/bin/python