commit
63ab2a4130
@ -0,0 +1,7 @@
|
|||||||
|
A bunch of scripts with a menu to make your life easier.
|
||||||
|
Run it from the application menu or type "~/piKiss/piKiss.sh"
|
||||||
|
∙ Easy system configuration
|
||||||
|
∙ Ability to install your favourite games like Half Life
|
||||||
|
∙ Emulators galore!
|
||||||
|
∙ Install apps like OBS and Cool-Retro-Term!
|
||||||
|
∙ AND MUCH MORE!
|
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")"
|
||||||
|
function error {
|
||||||
|
echo -e "\e[31m$1\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
#use the error function often!
|
||||||
|
#If a certain command is necessary for installation to continue, then add this to the end of it:
|
||||||
|
# || error 'reason'
|
||||||
|
#example below:
|
||||||
|
curl -sSL https://git.io/JfAPE | bash || error 'Failed to install piKiss!'
|
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")"
|
||||||
|
function error {
|
||||||
|
echo -e "\e[31m$1\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
sudo rm -r ~/piKiss
|
||||||
|
sudo rm ~/.local/share/applications/pikiss.desktop
|
||||||
|
|
||||||
|
#if your app installs any packages, keep this command here so those packages will be removed.
|
||||||
|
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
|
@ -0,0 +1 @@
|
|||||||
|
https://github.com/jmcerrejon/PiKISS
|
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 6144ff17a9dd1afc4fa8258e8f60df0f61f91d0e
|
Loading…
Reference in New Issue