commit
d261b2408c
@ -0,0 +1 @@
|
||||
Botspot. Oh yeah.
|
@ -0,0 +1,3 @@
|
||||
Proper appearance theme for the Geany text editor.
|
||||
Geany's default color scheme looks horrible. Fortunately, this app will make it look good.
|
||||
By default, this will apply the "spyder-dark" theme, (Botspot's favorite!), but it will also install a bunch of other themes for you to try out as well.
|
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
#get theme files
|
||||
rm -rf ~/geany-themes
|
||||
git clone --depth 1 https://github.com/codebrainz/geany-themes || error "Failed to git clone the geany themes repository!"
|
||||
|
||||
#copy theme files
|
||||
mkdir -p ~/.config/geany/colorschemes
|
||||
cp -a ~/geany-themes/colorschemes/. ~/.config/geany/colorschemes || error "Failed to copy colorschemes to $HOME/.config/geany/colorschemes"
|
||||
|
||||
#clear geany's pre-existing color_scheme entry
|
||||
sed -i 's/color_scheme=.*/color_scheme=spyder-dark.conf/g' ~/.config/geany/geany.conf
|
||||
|
||||
#clean up
|
||||
rm -rf ~/geany-themes
|
||||
|
||||
if [ ! -z "$(ps aux | grep 'geany' | grep -v grep)" ];then
|
||||
echo -e "\nGeany text editor is currently running.\nPlease close Geany and launch it again to apply the new theme."
|
||||
sleep 5
|
||||
fi
|
@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
#get theme files
|
||||
rm -rf ~/geany-themes
|
||||
git clone --depth 1 https://github.com/codebrainz/geany-themes || error "Failed to git clone the geany themes repository!"
|
||||
|
||||
#remove all downloaded themes from .config
|
||||
files="$(cd ~/geany-themes/colorschemes
|
||||
ls)"
|
||||
|
||||
#no need for that repo anymore
|
||||
rm -f ~/geany-themes &>/dev/null
|
||||
|
||||
IFS=$'\n'
|
||||
|
||||
for file in $files ;do
|
||||
rm -f ~/".config/geany/colorschemes/$file"
|
||||
done
|
||||
|
||||
#clear geany's color_scheme entry
|
||||
sed -i 's/color_scheme=.*/color_scheme=/g' ~/.config/geany/geany.conf
|
||||
|
||||
exit 0
|
@ -0,0 +1 @@
|
||||
https://github.com/codebrainz/geany-themes
|
@ -0,0 +1,4 @@
|
||||
Added to Pi-Apps by Itai-Nelken
|
||||
compiled by Itai-Nelken
|
||||
armhf DEB packaged using QEMU2DEB (tool by Itai-Nelken) by Itai-Nelken.
|
||||
arm64 DEB packaged with checkinstall by Itai-Nelken.
|
@ -0,0 +1,4 @@
|
||||
QEMU is a generic and open source machine emulator and virtualizer.
|
||||
Latest version of QEMU, Not outdated like the repository's QEMU.
|
||||
if you ever had trouble using the repository's QEMU, this version will work way better.
|
||||
(for example the MacOS 9 dock doesn't appear using the repository's QEMU).
|
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd $HOME
|
||||
#Download QEMU
|
||||
rm -f ./qemu-5.2.50-armhf.deb
|
||||
wget https://archive.org/download/macos_921_qemu_rpi/qemu-5.2.50-armhf.deb || error 'Failed to Download QEMU!'
|
||||
#Install QEMU
|
||||
sudo apt install --fix-broken -y ./qemu-5.2.50-armhf.deb || error 'Failed to install QEMU!'
|
||||
rm qemu-5.2.50-armhf.deb
|
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd $HOME
|
||||
#Download QEMU
|
||||
wget https://archive.org/download/macos_921_qemu_rpi/qemu_5.2.50-1_arm64.deb || error 'Failed to Download QEMU!'
|
||||
#Install QEMU
|
||||
sudo apt install --fix-broken -y ./qemu_5.2.50-1_arm64.deb || error 'Failed to unstall QEMU!'
|
||||
rm qemu_5.2.50-1_arm64.deb
|
@ -0,0 +1 @@
|
||||
https://www.qemu.org/
|
@ -1,3 +1,3 @@
|
||||
webapp made by Itai-Nelken based on phoenixbyrd's webapps.
|
||||
scripts written by Itai-Nelken
|
||||
apps compiled using Nativefier and scripts written by Itai-Nelken
|
||||
Nativefier made by jiahaog.
|
||||
thanks to Botspot for help with debugging the menu shortcut and for creating pi-apps!
|
||||
|
@ -1,26 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd $HOME
|
||||
mkdir -p ~/WhatsappWeb/userdata
|
||||
|
||||
echo "#!/bin/bash
|
||||
chromium-browser %U --user-agent='Mozilla/5.0 (X11; CrOS armv7l 11895.95.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.125 Safari/537.36' --user-data-dir=$HOME/WhatsappWeb/userdata --app=https://web.whatsapp.com/ --window-size=1200,700" > ~/WhatsappWeb/whatsappweb.sh
|
||||
sudo chmod +x ~/WhatsappWeb/whatsappweb.sh
|
||||
|
||||
echo "[Desktop Entry]
|
||||
Name=Whatsapp Web
|
||||
Comment=Whatsapp Web webapp.
|
||||
Exec=$HOME/WhatsappWeb/whatsappweb.sh
|
||||
Path=$HOME/WhatsappWeb
|
||||
Icon=$(dirname "$0")/icon-64.png
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Type=Application
|
||||
Categories=Network;" > ~/.local/share/applications/whatsappweb.desktop || error "Failed to create menu button!"
|
@ -1,3 +0,0 @@
|
||||
apps compiled using Nativefier and scripts written by Itai-Nelken
|
||||
Nativefier made by jiahaog.
|
||||
thanks to Botspot for help with debugging the menu shortcut and for creating pi-apps!
|
Binary file not shown.
After Width: | Height: | Size: 542 B |
Loading…
Reference in New Issue