This commit is contained in:
skullbite
2025-03-19 01:46:17 -04:00
commit 8fdf778133
4 changed files with 27 additions and 0 deletions

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# pupcmd
### A personal script library maintained by skullbite
This repo is home to a few scripts I find myself running all too frequently on linux desktops.

7
arch/i-paru Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
last_dir="$PWD"
git clone https://aur.archlinux.org/paru.git /tmp/paru
cd /tmp/paru
makepkg -si
cd last_dir

6
install Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
mkdir -p ~/.local/bin
echo "#!/bin/bash\nsh -c \"$(curl -sSL https://git.bork.quest/skullbite/pupcmd/raw/branch/main/pupcmd/$1)\"" >> ~/.local/bin/pupcmd
chmod +x ~/.local/bin/pupcmd
echo "done lol"

10
kde/i-catppuccin Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# i-catppuccin: Installs the catppuccin theme
last_dir="$PWD"
git clone https://github.com/catppuccin/kde /tmp/cat-kde
cd /tmp/cat-kde
chmod +x install.sh
./install.sh
cd "$last_dir"