init
This commit is contained in:
4
README.md
Normal file
4
README.md
Normal 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
7
arch/i-paru
Normal 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
6
install
Normal 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
10
kde/i-catppuccin
Normal 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"
|
||||
Reference in New Issue
Block a user