├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── app-submission.yml │ ├── app-suggestion.yml │ ├── bug-report.yml │ ├── config.yml │ └── suggestion.yml ├── update_apps_issue_template.md └── workflows │ ├── check_PR.yml │ ├── create_shlink_links.yml │ ├── pr-greeting.yml │ ├── sha1sum.yml │ ├── shellcheck.yml │ ├── test_build.yml │ ├── test_build_commands.sh │ ├── update_apps.yml │ ├── update_apps_raspbian_addons.yml.disabled │ ├── update_debian_repo_script.sh │ ├── update_github_script.sh │ ├── update_wiki.yml │ ├── updates │ ├── Angry IP scanner.sh │ ├── Arduino.sh │ ├── Better Chromium.sh │ ├── BleachBit.sh │ ├── BlockBench.sh.disabled │ ├── Boxy SVG.sh │ ├── Browsh.sh │ ├── Caskaydia Cove NF.sh │ ├── Celeste64.sh.disabled │ ├── Clam Antivirus.sh │ ├── Cura.sh │ ├── DDNet.sh.disabled │ ├── Doom 3.sh │ ├── Drawing.sh │ ├── Ducopanel.sh │ ├── Electron Fiddle.sh │ ├── FF Multi Converter.sh │ ├── Fastfetch.sh │ ├── Feather Wallet.sh │ ├── Flameshot.sh │ ├── Floorp.sh │ ├── Flow.sh │ ├── FreeTube.sh │ ├── Geekbench 6.sh │ ├── Github Desktop.sh │ ├── Github-CLI.sh │ ├── Godot.sh │ ├── Guake Terminal.sh │ ├── Hyper.sh │ ├── INAV Configurator.sh │ ├── Intellij IDEA.sh │ ├── Legcord.sh │ ├── LibreWolf.sh │ ├── LineRider.sh │ ├── Linux Wifi Hotspot.sh │ ├── Marathon.sh │ ├── Microsoft PowerShell.sh │ ├── Microsoft Teams.sh │ ├── Min.sh │ ├── Minecraft Pi (Modded).sh │ ├── Monero GUI.sh │ ├── Mullvad.sh │ ├── MuseScore.sh │ ├── Node.js.sh │ ├── Notepad ++.sh │ ├── Obsidian.sh │ ├── Oh My Posh.sh │ ├── Open-Typer.sh │ ├── PPSSPP (PSP emulator).sh │ ├── PiGro.sh │ ├── Pixelorama.sh │ ├── Processing IDE.sh │ ├── PrusaSlicer.sh │ ├── PyChess.sh │ ├── Pycharm CE.sh │ ├── Reaper.sh │ ├── Renoise (Demo).sh │ ├── RiiTag-RPC.sh │ ├── Ruffle.sh │ ├── RustDesk.sh │ ├── Scrcpy.sh │ ├── Shattered Pixel Dungeon.sh │ ├── Signal.sh │ ├── Sonic Pi.sh │ ├── SpeedTest-CLI.sh │ ├── Syncthing.sh │ ├── System Monitoring Center.sh │ ├── Systemd Pilot.sh │ ├── Tabby.sh │ ├── Tor.sh │ ├── Turbowarp.sh │ ├── USBImager.sh.disabled │ ├── Ulauncher.sh │ ├── Unciv.sh │ ├── VSCodium.sh │ ├── VeraCrypt.sh │ ├── WPS Office.sh.disabled │ ├── Webcord.sh │ ├── WorldPainter.sh │ ├── XMRig.sh.disabled │ ├── XSnow.sh │ ├── Xtreme Download Manager.sh.disabled │ ├── Zen.sh │ ├── Zoom.sh │ ├── btop++.sh │ ├── jGRASP IDE.sh │ └── tldr.sh │ └── zip-preview.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── COPYING ├── README.md ├── SECURITY.md ├── api ├── apps ├── AbiWord │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Alacritty Terminal │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── All Is Well │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Amiberry │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── AndroidBuddy │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Angry IP scanner │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── AntiMicroX │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Arduino │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── AstroMenace │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Audacious │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Audacity │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Autostar │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── BalenaEtcher │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Bambu Studio │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Better Chromium │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ └── uninstall ├── BleachBit │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── BlockBench │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── BlueJ Java IDE │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Bongo Cam │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Botspot Screen Recorder │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Botspot Virtual Machine │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Box64 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Box86 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Boxy SVG │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Brave │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Browsh │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Caprine │ ├── credit │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Caskaydia Cove NF │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Celeste Classic │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ └── uninstall ├── Celeste64 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Chiaki │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Chromium │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ └── packages ├── Clam Antivirus │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── CloudBuddy │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Codex │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Color Emoji font │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ └── uninstall ├── Colored Man Pages │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ └── uninstall ├── CommanderPi │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Conky Rings │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Conky │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Cool Retro Term │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── CrazyCattle3D │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Cura │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── DDNet │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Deluge │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Descent 1 │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Descent 2 │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Deskreen │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Disk Usage Analyzer │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Doom 3 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Dot Matrix │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Downgrade Chromium │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Drawing │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Ducopanel │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Eagle CAD │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Easy Effects │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Electron Fiddle │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Epiphany │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── FF Multi Converter │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Fastfetch │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Feather Wallet │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Filezilla │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Firefox Rapid Release │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Flameshot │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Floorp │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Flow │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── FreeTube │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Friday Night Funkin' Rewritten │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Fritzing │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── GIMP │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── GParted │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Geany Dark Mode │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Geekbench 5 │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Geekbench 6 │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Github Desktop │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Github-CLI │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Gnome Builder IDE │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Gnome Maps │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Gnome Software │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Gnumeric │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Godot │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Guake Terminal │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── HTTrack Website Copier │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Hangover │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Heroes 2 │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Https File Server │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Hyper │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── INAV Configurator │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Imager │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Inkscape │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Intellij IDEA │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Kdenlive │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── KeePassXC │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── KiCad │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Kodi │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Kolourpaint │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Krita │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── LMMS │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Legcord │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Lego Digital Designer │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── LibreCAD │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── LibreOffice │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── LibrePCB │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── LibreWolf │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Libreoffice MS theme │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Lightpad │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── LineRider │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Linux Wifi Hotspot │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Marathon │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── MatterControl │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Microsoft PowerShell │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Microsoft Teams │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Min │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Minecraft Bedrock │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Minecraft Java GDLauncher │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Minecraft Java Prism Launcher │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Minecraft Java Server │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ └── uninstall ├── Minecraft Pi (Modded) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Mission Planner │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Monero GUI │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── More RAM │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Mu │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Mullvad │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── MuseScore │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Nautilus │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Nemo │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Neofetch │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── NixNote2 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Node.js │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Notejot │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Notepad ++ │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── OBS Studio │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Obsidian │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Oh My Posh │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Ollama GUI │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── OnionShare │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Oomox Theme Designer │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Open-Typer │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── OpenSCAD │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Organic Maps │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── PPSSPP (PSP emulator) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Pac-Man │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── PeaZip │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Persepolis Download Manager │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Pi Power Tools │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Pi-Apps Terminal Plugin (bash) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── PiGro │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── PiSafe │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Pika Backup │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Pinta │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Pixelorama │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Powerline-Shell │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Processing IDE │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Project OutFox │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── ProjectLibre │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── PrusaSlicer │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Puffin │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── PyChess │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Pycharm CE │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── QEMU │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── QR Code Reader │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Quartz │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Reaper │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Remarkable │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Renoise (Demo) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── RiiTag-RPC │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Ruffle │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── RustDesk │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Scratch 2 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── Scratch 3 │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Scrcpy │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Screenshot │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Shattered Pixel Dungeon │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Shotwell │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Signal │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── SimpleScreenRecorder │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Snap Store │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Snapdrop │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Sonic Pi │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Sound Recorder │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── SpeedTest-CLI │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Sphero SDK │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── StackEdit │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Steam Link │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ └── packages ├── Steam │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ └── uninstall ├── StepMania │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Stunt Rally │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Sublime Merge │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Sublime Text │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Synaptic │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Syncthing │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── SysMonTask │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── System Monitoring Center │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Systemd Pilot │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Tabby │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── TeamViewer │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Telegram │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Tetris CLI │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Thonny │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Thunderbird │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── TiLP │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Timeshift │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Tor │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Transmission │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Turbowarp │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── USBImager │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Ulauncher │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Unciv │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Update Buddy │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── VARA HF │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── VMware Horizon Client │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── VSCodium │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── VeraCrypt │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Visual Studio Code │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Vivaldi │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── WACUP (new WinAmp) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── WPS Office │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Waveform │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Web Apps │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Webcord │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── Wechat │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── WhatsApp │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Windows Flasher │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Windows Screensavers │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Wine (x64) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Wine (x86) │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── uninstall │ └── website ├── WorldPainter │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── XMRig │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── XSnow │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Xfburn │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── Xtreme Download Manager │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── YouTubuddy │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── Zen │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-64 │ ├── uninstall │ └── website ├── Zoom PWA │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ └── uninstall ├── Zoom │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── btop++ │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── ckb-next │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── packages │ └── website ├── jGRASP IDE │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install │ ├── uninstall │ └── website ├── template │ ├── credits │ ├── description │ ├── install │ ├── uninstall │ └── website └── tldr │ ├── credits │ ├── description │ ├── icon-24.png │ ├── icon-64.png │ ├── install-32 │ ├── install-64 │ ├── uninstall │ └── website ├── createapp ├── data └── update-exclusion ├── etc ├── categories ├── category-overrides-jetson-18.04 ├── category-overrides-jetson-generic ├── category-overrides-non-raspberry ├── categoryedit ├── git_url ├── import-app ├── logviewer ├── preload-daemon ├── runonce-entries ├── setting-params │ ├── App List Style │ ├── Check for updates │ ├── Enable analytics │ ├── Preferred text editor │ ├── Show Edit button │ ├── Show apps │ └── Shuffle App list ├── terminal-run └── viewlog ├── gui ├── icons ├── back-64.png ├── back.png ├── background-3d-dark.png ├── background-3d.png ├── backup.png ├── badge-light.png ├── badge.png ├── botspot.png ├── categories.png ├── categories │ ├── All Apps-64.png │ ├── All Apps.png │ ├── Appearance-64.png │ ├── Appearance.png │ ├── Browsers-64.png │ ├── Browsers.png │ ├── Communication-64.png │ ├── Communication.png │ ├── Creative Arts-64.png │ ├── Creative Arts.png │ ├── Crypto-64.png │ ├── Crypto.png │ ├── Emulation-64.png │ ├── Emulation.png │ ├── Engineering-64.png │ ├── Engineering.png │ ├── Games-64.png │ ├── Games.png │ ├── Imported-64.png │ ├── Imported.png │ ├── Installed-64.png │ ├── Installed.png │ ├── Internet-64.png │ ├── Internet.png │ ├── Multimedia-64.png │ ├── Multimedia.png │ ├── Office-64.png │ ├── Office.png │ ├── Packages-64.png │ ├── Packages.png │ ├── Programming-64.png │ ├── Programming.png │ ├── System Management-64.png │ ├── System Management.png │ ├── Terminals-64.png │ ├── Terminals.png │ ├── Tools-64.png │ ├── Tools.png │ ├── Updates-64.png │ ├── Updates.png │ ├── default-64.png │ ├── default.png │ └── vector │ │ ├── All Apps.svg │ │ ├── Appearance.svg │ │ ├── Communication.svg │ │ ├── Creative Arts.svg │ │ ├── Crypto.svg │ │ ├── Emulation.svg │ │ ├── Engineering.svg │ │ ├── Games.svg │ │ ├── Imported.svg │ │ ├── Installed.svg │ │ ├── Internet.svg │ │ ├── Multimedia.svg │ │ ├── Office.svg │ │ ├── Packages.svg │ │ ├── Programming.svg │ │ ├── System Management.svg │ │ ├── Terminals.svg │ │ ├── Tools.svg │ │ └── default.svg ├── check.png ├── create.png ├── down.png ├── download.png ├── edit.png ├── error.png ├── exit.png ├── failure.png ├── forward.png ├── image.png ├── in-progress.png ├── info.png ├── install.png ├── interrupted.png ├── log-file.png ├── logo-128.png ├── logo-144.png ├── logo-3d-dark.png ├── logo-3d.png ├── logo-64.png ├── logo-text.png ├── logo.png ├── multi-select.png ├── none-1.png ├── none-24.png ├── none-64.png ├── options.png ├── proglogo.png ├── prompt.png ├── refresh.png ├── save.png ├── screenshots │ ├── app list.png │ ├── buttons │ │ ├── back.png │ │ ├── back2.png │ │ ├── categories.png │ │ ├── edit.png │ │ ├── import app.png │ │ ├── install.png │ │ ├── log files.png │ │ ├── new app.png │ │ ├── scripts.png │ │ ├── search.png │ │ ├── settings.png │ │ └── uninstall.png │ ├── category editor.png │ ├── create app.png │ ├── details window.png │ ├── main window.png │ ├── manage.png │ ├── settings.png │ └── updates available.png ├── search.png ├── send-error-report.png ├── settings-dark.png ├── settings-light.png ├── settings.png ├── shellscript.png ├── success.png ├── theofficialgman.png ├── trash.png ├── txt.png ├── uninstall.png ├── up.png ├── update.png ├── upload.png ├── vector │ ├── back.svg │ ├── background-3d-dark.svg │ ├── background-3d.svg │ ├── badge-dark.svg │ ├── badge-light.svg │ ├── error.svg │ ├── failure.svg │ ├── image.svg │ ├── in_progress.svg │ ├── interrupted.svg │ ├── logo-3d-dark.svg │ ├── logo-3d.svg │ ├── logo-text.svg │ ├── logo.svg │ ├── options.svg │ ├── proglogo.svg │ ├── refresh.svg │ ├── settings-dark.svg │ ├── settings-light.svg │ ├── settings.svg │ ├── shellscript.svg │ ├── success.svg │ └── txt.svg └── wait.png ├── install ├── manage ├── preload ├── settings ├── uninstall └── updater /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Botspot, theofficialgman] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /apps/AbiWord/credits: -------------------------------------------------------------------------------- 1 | open-sorcerer64 2 | -------------------------------------------------------------------------------- /apps/AbiWord/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AbiWord/icon-24.png -------------------------------------------------------------------------------- /apps/AbiWord/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AbiWord/icon-64.png -------------------------------------------------------------------------------- /apps/AbiWord/packages: -------------------------------------------------------------------------------- 1 | abiword 2 | -------------------------------------------------------------------------------- /apps/AbiWord/website: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/ 2 | -------------------------------------------------------------------------------- /apps/Alacritty Terminal/credits: -------------------------------------------------------------------------------- 1 | theofficialgman for building the debs. 2 | barnumbirr on github for making the debian sources. 3 | -------------------------------------------------------------------------------- /apps/Alacritty Terminal/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Alacritty Terminal/website: -------------------------------------------------------------------------------- 1 | https://github.com/alacritty/alacritty 2 | -------------------------------------------------------------------------------- /apps/All Is Well/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/All Is Well/icon-24.png -------------------------------------------------------------------------------- /apps/All Is Well/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/All Is Well/icon-64.png -------------------------------------------------------------------------------- /apps/All Is Well/website: -------------------------------------------------------------------------------- 1 | https://github.com/spectrumgamer75/All-is-well 2 | -------------------------------------------------------------------------------- /apps/Amiberry/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Amiberry/icon-24.png -------------------------------------------------------------------------------- /apps/Amiberry/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Amiberry/icon-64.png -------------------------------------------------------------------------------- /apps/Amiberry/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | 4 | -------------------------------------------------------------------------------- /apps/Amiberry/website: -------------------------------------------------------------------------------- 1 | https://github.com/midwan/amiberry/ 2 | -------------------------------------------------------------------------------- /apps/AndroidBuddy/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/AndroidBuddy/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AndroidBuddy/icon-24.png -------------------------------------------------------------------------------- /apps/AndroidBuddy/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AndroidBuddy/icon-64.png -------------------------------------------------------------------------------- /apps/AndroidBuddy/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/androidbuddy 2 | -------------------------------------------------------------------------------- /apps/Angry IP scanner/credits: -------------------------------------------------------------------------------- 1 | @Itai-Nelken (GitHub) 2 | @ryanfortner (GitHub) -------------------------------------------------------------------------------- /apps/Angry IP scanner/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | rm_external_repo "adoptium" 5 | -------------------------------------------------------------------------------- /apps/Angry IP scanner/website: -------------------------------------------------------------------------------- 1 | https://angryip.org 2 | -------------------------------------------------------------------------------- /apps/AntiMicroX/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AntiMicroX/icon-24.png -------------------------------------------------------------------------------- /apps/AntiMicroX/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AntiMicroX/icon-64.png -------------------------------------------------------------------------------- /apps/AntiMicroX/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/AntiMicroX/website: -------------------------------------------------------------------------------- 1 | https://antimicrox.github.io/ 2 | -------------------------------------------------------------------------------- /apps/Arduino/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Arduino/icon-24.png -------------------------------------------------------------------------------- /apps/Arduino/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Arduino/icon-64.png -------------------------------------------------------------------------------- /apps/Arduino/website: -------------------------------------------------------------------------------- 1 | https://www.arduino.cc/en/main/software 2 | -------------------------------------------------------------------------------- /apps/AstroMenace/credits: -------------------------------------------------------------------------------- 1 | All contributer in github page 2 | added to pi-apps by Painadath 3 | samuelpainadath@gmail.com 4 | -------------------------------------------------------------------------------- /apps/AstroMenace/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AstroMenace/icon-24.png -------------------------------------------------------------------------------- /apps/AstroMenace/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/AstroMenace/icon-64.png -------------------------------------------------------------------------------- /apps/AstroMenace/website: -------------------------------------------------------------------------------- 1 | https://github.com/viewizard/astromenace 2 | -------------------------------------------------------------------------------- /apps/Audacious/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Audacious/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Audacious/icon-24.png -------------------------------------------------------------------------------- /apps/Audacious/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Audacious/icon-64.png -------------------------------------------------------------------------------- /apps/Audacious/packages: -------------------------------------------------------------------------------- 1 | audacious 2 | -------------------------------------------------------------------------------- /apps/Audacious/website: -------------------------------------------------------------------------------- 1 | https://audacious-media-player.org/ 2 | -------------------------------------------------------------------------------- /apps/Audacity/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Audacity/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Audacity/icon-24.png -------------------------------------------------------------------------------- /apps/Audacity/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Audacity/icon-64.png -------------------------------------------------------------------------------- /apps/Audacity/packages: -------------------------------------------------------------------------------- 1 | audacity 2 | -------------------------------------------------------------------------------- /apps/Audacity/website: -------------------------------------------------------------------------------- 1 | https://www.audacityteam.org/ 2 | -------------------------------------------------------------------------------- /apps/Autostar/credits: -------------------------------------------------------------------------------- 1 | Botspot made, Botspot added. 2 | -------------------------------------------------------------------------------- /apps/Autostar/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Autostar/icon-24.png -------------------------------------------------------------------------------- /apps/Autostar/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Autostar/icon-64.png -------------------------------------------------------------------------------- /apps/Autostar/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | rm -rf ~/autostar ~/.local/share/applications/autostar.desktop 5 | 6 | -------------------------------------------------------------------------------- /apps/Autostar/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/autostar 2 | -------------------------------------------------------------------------------- /apps/BalenaEtcher/credits: -------------------------------------------------------------------------------- 1 | @theofficialgman (GitHub) 2 | @Itai-Nelken (GitHub) 3 | @ryanfortner (GitHub) -------------------------------------------------------------------------------- /apps/BalenaEtcher/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/BalenaEtcher/icon-24.png -------------------------------------------------------------------------------- /apps/BalenaEtcher/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/BalenaEtcher/icon-64.png -------------------------------------------------------------------------------- /apps/BalenaEtcher/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 -------------------------------------------------------------------------------- /apps/BalenaEtcher/website: -------------------------------------------------------------------------------- 1 | https://github.com/Pi-Apps-Coders/files/blob/main/CompileCommands.md#balenaetcher 2 | -------------------------------------------------------------------------------- /apps/Bambu Studio/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Bambu Studio/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Bambu Studio/icon-24.png -------------------------------------------------------------------------------- /apps/Bambu Studio/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Bambu Studio/icon-64.png -------------------------------------------------------------------------------- /apps/Bambu Studio/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install com.bambulab.BambuStudio || exit 1 6 | -------------------------------------------------------------------------------- /apps/Bambu Studio/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall com.bambulab.BambuStudio || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Bambu Studio/website: -------------------------------------------------------------------------------- 1 | https://bambulab.com/en/download/studio 2 | -------------------------------------------------------------------------------- /apps/Better Chromium/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/BleachBit/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/BleachBit/icon-24.png -------------------------------------------------------------------------------- /apps/BleachBit/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/BleachBit/icon-64.png -------------------------------------------------------------------------------- /apps/BleachBit/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/BleachBit/website: -------------------------------------------------------------------------------- 1 | https://www.bleachbit.org/ 2 | -------------------------------------------------------------------------------- /apps/BlockBench/credits: -------------------------------------------------------------------------------- 1 | JannisX11 (GitHub) for creating the program 2 | -------------------------------------------------------------------------------- /apps/BlockBench/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/BlockBench/icon-24.png -------------------------------------------------------------------------------- /apps/BlockBench/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/BlockBench/icon-64.png -------------------------------------------------------------------------------- /apps/BlockBench/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/BlockBench/website: -------------------------------------------------------------------------------- 1 | https://github.com/JannisX11/blockbench 2 | -------------------------------------------------------------------------------- /apps/BlueJ Java IDE/credits: -------------------------------------------------------------------------------- 1 | open-sorcerer64 2 | -------------------------------------------------------------------------------- /apps/BlueJ Java IDE/packages: -------------------------------------------------------------------------------- 1 | bluej | bluej-unbundled 2 | -------------------------------------------------------------------------------- /apps/BlueJ Java IDE/website: -------------------------------------------------------------------------------- 1 | https://bluej.org 2 | -------------------------------------------------------------------------------- /apps/Bongo Cam/credits: -------------------------------------------------------------------------------- 1 | Install code made by Raspberry Pi News on Youtube 2 | Original app made by kuromi: https://github.com/kuroni/bongocat-osu 3 | -------------------------------------------------------------------------------- /apps/Bongo Cam/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Bongo Cam/icon-24.png -------------------------------------------------------------------------------- /apps/Bongo Cam/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Bongo Cam/icon-64.png -------------------------------------------------------------------------------- /apps/Bongo Cam/website: -------------------------------------------------------------------------------- 1 | https://github.com/kuroni/bongocat-osu 2 | -------------------------------------------------------------------------------- /apps/Botspot Screen Recorder/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Botspot Screen Recorder/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/botspot-screen-recorder 2 | -------------------------------------------------------------------------------- /apps/Botspot Virtual Machine/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Botspot Virtual Machine/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/bvm 2 | -------------------------------------------------------------------------------- /apps/Box64/credits: -------------------------------------------------------------------------------- 1 | ptitseb for creating box64 2 | debs made by Pi-Apps-Coders development team 3 | -------------------------------------------------------------------------------- /apps/Box64/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Box64/icon-24.png -------------------------------------------------------------------------------- /apps/Box64/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Box64/icon-64.png -------------------------------------------------------------------------------- /apps/Box64/website: -------------------------------------------------------------------------------- 1 | https://github.com/ptitSeb/box64 2 | -------------------------------------------------------------------------------- /apps/Box86/credits: -------------------------------------------------------------------------------- 1 | ptitseb for creating box64 2 | debs made by Pi-Apps-Coders development team 3 | -------------------------------------------------------------------------------- /apps/Box86/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Box86/icon-24.png -------------------------------------------------------------------------------- /apps/Box86/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Box86/icon-64.png -------------------------------------------------------------------------------- /apps/Box86/website: -------------------------------------------------------------------------------- 1 | https://github.com/ptitSeb/box86 2 | -------------------------------------------------------------------------------- /apps/Boxy SVG/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Boxy SVG/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Boxy SVG/icon-24.png -------------------------------------------------------------------------------- /apps/Boxy SVG/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Boxy SVG/icon-64.png -------------------------------------------------------------------------------- /apps/Boxy SVG/website: -------------------------------------------------------------------------------- 1 | https://boxy-svg.com/ 2 | -------------------------------------------------------------------------------- /apps/Brave/credits: -------------------------------------------------------------------------------- 1 | brave browser developers and google 2 | -------------------------------------------------------------------------------- /apps/Brave/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Brave/icon-24.png -------------------------------------------------------------------------------- /apps/Brave/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Brave/icon-64.png -------------------------------------------------------------------------------- /apps/Brave/website: -------------------------------------------------------------------------------- 1 | https://brave.com/ 2 | -------------------------------------------------------------------------------- /apps/Browsh/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Browsh/icon-24.png -------------------------------------------------------------------------------- /apps/Browsh/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Browsh/icon-64.png -------------------------------------------------------------------------------- /apps/Browsh/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | 4 | sudo rm -f ~/.local/share/applications/browsh.desktop 5 | -------------------------------------------------------------------------------- /apps/Browsh/website: -------------------------------------------------------------------------------- 1 | https://www.brow.sh/ 2 | -------------------------------------------------------------------------------- /apps/Caprine/credit: -------------------------------------------------------------------------------- 1 | Thanks to @sindresorhus on GitHub for maintaining this project. 2 | -------------------------------------------------------------------------------- /apps/Caprine/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Caprine/icon-24.png -------------------------------------------------------------------------------- /apps/Caprine/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Caprine/icon-64.png -------------------------------------------------------------------------------- /apps/Caprine/website: -------------------------------------------------------------------------------- 1 | https://sindresorhus.com/caprine/ 2 | -------------------------------------------------------------------------------- /apps/Caskaydia Cove NF/website: -------------------------------------------------------------------------------- 1 | nerdfonts.com 2 | -------------------------------------------------------------------------------- /apps/Celeste64/credits: -------------------------------------------------------------------------------- 1 | Extremely OK Games 2 | -------------------------------------------------------------------------------- /apps/Celeste64/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Celeste64/icon-24.png -------------------------------------------------------------------------------- /apps/Celeste64/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Celeste64/icon-64.png -------------------------------------------------------------------------------- /apps/Celeste64/website: -------------------------------------------------------------------------------- 1 | https://maddymakesgamesinc.itch.io/celeste64 2 | -------------------------------------------------------------------------------- /apps/Chiaki/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Chiaki/icon-24.png -------------------------------------------------------------------------------- /apps/Chiaki/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Chiaki/icon-64.png -------------------------------------------------------------------------------- /apps/Chiaki/website: -------------------------------------------------------------------------------- 1 | https://github.com/Fredrum/chiaki/wiki/Chiaki-for-the-Raspberry-Pi 2 | -------------------------------------------------------------------------------- /apps/Chromium/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Chromium/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Chromium/icon-24.png -------------------------------------------------------------------------------- /apps/Chromium/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Chromium/icon-64.png -------------------------------------------------------------------------------- /apps/Chromium/packages: -------------------------------------------------------------------------------- 1 | chromium-browser | chromium 2 | -------------------------------------------------------------------------------- /apps/Clam Antivirus/website: -------------------------------------------------------------------------------- 1 | https://gitlab.com/dave_m/clamtk -------------------------------------------------------------------------------- /apps/CloudBuddy/credits: -------------------------------------------------------------------------------- 1 | Botspot made, Botspot added. 2 | -------------------------------------------------------------------------------- /apps/CloudBuddy/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/CloudBuddy/icon-24.png -------------------------------------------------------------------------------- /apps/CloudBuddy/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/CloudBuddy/icon-64.png -------------------------------------------------------------------------------- /apps/CloudBuddy/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/cloudbuddy 2 | -------------------------------------------------------------------------------- /apps/Codex/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Codex/icon-24.png -------------------------------------------------------------------------------- /apps/Codex/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Codex/icon-64.png -------------------------------------------------------------------------------- /apps/Codex/website: -------------------------------------------------------------------------------- 1 | https://github.com/jcv8000/Codex 2 | -------------------------------------------------------------------------------- /apps/Colored Man Pages/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Colored Man Pages/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo rm -f /usr/local/bin/man 4 | -------------------------------------------------------------------------------- /apps/CommanderPi/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/CommanderPi/icon-24.png -------------------------------------------------------------------------------- /apps/CommanderPi/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/CommanderPi/icon-64.png -------------------------------------------------------------------------------- /apps/CommanderPi/website: -------------------------------------------------------------------------------- 1 | https://github.com/Jack477/CommanderPi 2 | -------------------------------------------------------------------------------- /apps/Conky Rings/credits: -------------------------------------------------------------------------------- 1 | phoenixbyrd for the files 2 | ryanfortner for the scripts 3 | Botspot for coloring the theme 4 | -------------------------------------------------------------------------------- /apps/Conky Rings/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Conky Rings/icon-24.png -------------------------------------------------------------------------------- /apps/Conky Rings/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Conky Rings/icon-64.png -------------------------------------------------------------------------------- /apps/Conky Rings/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/rpi_conky/tree/master/conky_rings 2 | -------------------------------------------------------------------------------- /apps/Conky/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Conky/icon-24.png -------------------------------------------------------------------------------- /apps/Conky/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Conky/icon-64.png -------------------------------------------------------------------------------- /apps/Conky/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/rpi_conky 2 | -------------------------------------------------------------------------------- /apps/Cool Retro Term/website: -------------------------------------------------------------------------------- 1 | https://github.com/Swordfish90/cool-retro-term 2 | -------------------------------------------------------------------------------- /apps/CrazyCattle3D/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/CrazyCattle3D/icon-24.png -------------------------------------------------------------------------------- /apps/CrazyCattle3D/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/CrazyCattle3D/icon-64.png -------------------------------------------------------------------------------- /apps/CrazyCattle3D/website: -------------------------------------------------------------------------------- 1 | https://4nn4t4t.itch.io/crazycattle3d 2 | -------------------------------------------------------------------------------- /apps/Cura/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Cura/icon-24.png -------------------------------------------------------------------------------- /apps/Cura/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Cura/icon-64.png -------------------------------------------------------------------------------- /apps/Cura/website: -------------------------------------------------------------------------------- 1 | https://github.com/smartavionics/Cura 2 | -------------------------------------------------------------------------------- /apps/DDNet/credits: -------------------------------------------------------------------------------- 1 | Install Script made by Kolpix#1391 2 | Thanks to Crilum on Github for helping 3 | -------------------------------------------------------------------------------- /apps/DDNet/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/DDNet/icon-24.png -------------------------------------------------------------------------------- /apps/DDNet/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/DDNet/icon-64.png -------------------------------------------------------------------------------- /apps/DDNet/website: -------------------------------------------------------------------------------- 1 | https://ddnet.org/ 2 | -------------------------------------------------------------------------------- /apps/Deluge/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Deluge/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Deluge/icon-24.png -------------------------------------------------------------------------------- /apps/Deluge/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Deluge/icon-64.png -------------------------------------------------------------------------------- /apps/Deluge/packages: -------------------------------------------------------------------------------- 1 | deluge 2 | -------------------------------------------------------------------------------- /apps/Deluge/website: -------------------------------------------------------------------------------- 1 | https://www.deluge-torrent.org 2 | -------------------------------------------------------------------------------- /apps/Descent 1/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Descent 1/icon-24.png -------------------------------------------------------------------------------- /apps/Descent 1/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Descent 1/icon-64.png -------------------------------------------------------------------------------- /apps/Descent 1/website: -------------------------------------------------------------------------------- 1 | https://www.dxx-rebirth.com/ -------------------------------------------------------------------------------- /apps/Descent 2/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Descent 2/icon-24.png -------------------------------------------------------------------------------- /apps/Descent 2/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Descent 2/icon-64.png -------------------------------------------------------------------------------- /apps/Descent 2/website: -------------------------------------------------------------------------------- 1 | https://www.dxx-rebirth.com/ -------------------------------------------------------------------------------- /apps/Deskreen/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Deskreen/icon-24.png -------------------------------------------------------------------------------- /apps/Deskreen/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Deskreen/icon-64.png -------------------------------------------------------------------------------- /apps/Deskreen/website: -------------------------------------------------------------------------------- 1 | https://deskreen.com/ 2 | -------------------------------------------------------------------------------- /apps/Disk Usage Analyzer/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Disk Usage Analyzer/packages: -------------------------------------------------------------------------------- 1 | baobab 2 | -------------------------------------------------------------------------------- /apps/Disk Usage Analyzer/website: -------------------------------------------------------------------------------- 1 | https://wiki.gnome.org/Apps/DiskUsageAnalyzer 2 | -------------------------------------------------------------------------------- /apps/Doom 3/credits: -------------------------------------------------------------------------------- 1 | Script Created By RPI Coder 2 | Added To Pi-Apps by Botspot 3 | 4 | Testers: 5 | Lukefrenner 6 | Botspot 7 | Nikolay Dubnov 8 | -------------------------------------------------------------------------------- /apps/Doom 3/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Doom 3/icon-24.png -------------------------------------------------------------------------------- /apps/Doom 3/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Doom 3/icon-64.png -------------------------------------------------------------------------------- /apps/Doom 3/website: -------------------------------------------------------------------------------- 1 | https://github.com/techcoder20/RPIDoom3Installer.git 2 | -------------------------------------------------------------------------------- /apps/Dot Matrix/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Dot Matrix/icon-24.png -------------------------------------------------------------------------------- /apps/Dot Matrix/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Dot Matrix/icon-64.png -------------------------------------------------------------------------------- /apps/Dot Matrix/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall io.github.lainsce.DotMatrix || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Dot Matrix/website: -------------------------------------------------------------------------------- 1 | https://github.com/lainsce/dot-matrix 2 | -------------------------------------------------------------------------------- /apps/Downgrade Chromium/website: -------------------------------------------------------------------------------- 1 | https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=308303 2 | -------------------------------------------------------------------------------- /apps/Drawing/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Drawing/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Drawing/icon-24.png -------------------------------------------------------------------------------- /apps/Drawing/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Drawing/icon-64.png -------------------------------------------------------------------------------- /apps/Drawing/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 || error "apt failed to uninstall the 'drawing' package." 3 | -------------------------------------------------------------------------------- /apps/Drawing/website: -------------------------------------------------------------------------------- 1 | https://github.com/maoschanz/drawing 2 | -------------------------------------------------------------------------------- /apps/Ducopanel/credits: -------------------------------------------------------------------------------- 1 | @ponsato (GitHub) for the program 2 | @ryanfortner (GitHub) for the scripts 3 | -------------------------------------------------------------------------------- /apps/Ducopanel/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ducopanel/icon-24.png -------------------------------------------------------------------------------- /apps/Ducopanel/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ducopanel/icon-64.png -------------------------------------------------------------------------------- /apps/Ducopanel/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Ducopanel/website: -------------------------------------------------------------------------------- 1 | https://github.com/ponsato/ducopanel 2 | -------------------------------------------------------------------------------- /apps/Eagle CAD/credits: -------------------------------------------------------------------------------- 1 | Botspot made this app. 2 | -------------------------------------------------------------------------------- /apps/Eagle CAD/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Eagle CAD/icon-24.png -------------------------------------------------------------------------------- /apps/Eagle CAD/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Eagle CAD/icon-64.png -------------------------------------------------------------------------------- /apps/Eagle CAD/website: -------------------------------------------------------------------------------- 1 | http://eagle.autodesk.com/eagle/software-versions/1 2 | -------------------------------------------------------------------------------- /apps/Easy Effects/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Easy Effects/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Easy Effects/icon-24.png -------------------------------------------------------------------------------- /apps/Easy Effects/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Easy Effects/icon-64.png -------------------------------------------------------------------------------- /apps/Easy Effects/packages: -------------------------------------------------------------------------------- 1 | easyeffects 2 | -------------------------------------------------------------------------------- /apps/Easy Effects/website: -------------------------------------------------------------------------------- 1 | https://github.com/wwmm/easyeffects 2 | -------------------------------------------------------------------------------- /apps/Electron Fiddle/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Electron Fiddle/website: -------------------------------------------------------------------------------- 1 | https://www.electronjs.org/fiddle 2 | -------------------------------------------------------------------------------- /apps/Epiphany/credits: -------------------------------------------------------------------------------- 1 | open-sorcerrer64 2 | -------------------------------------------------------------------------------- /apps/Epiphany/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Epiphany/icon-24.png -------------------------------------------------------------------------------- /apps/Epiphany/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Epiphany/icon-64.png -------------------------------------------------------------------------------- /apps/Epiphany/packages: -------------------------------------------------------------------------------- 1 | epiphany-browser 2 | -------------------------------------------------------------------------------- /apps/Epiphany/website: -------------------------------------------------------------------------------- 1 | https://gitlab.gnome.org/GNOME/epiphany 2 | -------------------------------------------------------------------------------- /apps/FF Multi Converter/website: -------------------------------------------------------------------------------- 1 | https://github.com/l-koehler/FF-converter 2 | -------------------------------------------------------------------------------- /apps/Fastfetch/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Fastfetch/icon-24.png -------------------------------------------------------------------------------- /apps/Fastfetch/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Fastfetch/icon-64.png -------------------------------------------------------------------------------- /apps/Fastfetch/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Fastfetch/website: -------------------------------------------------------------------------------- 1 | https://github.com/fastfetch-cli/fastfetch 2 | -------------------------------------------------------------------------------- /apps/Feather Wallet/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | and austin2804 on discord for the description 3 | -------------------------------------------------------------------------------- /apps/Feather Wallet/website: -------------------------------------------------------------------------------- 1 | https://featherwallet.org 2 | -------------------------------------------------------------------------------- /apps/Filezilla/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Filezilla/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Filezilla/icon-24.png -------------------------------------------------------------------------------- /apps/Filezilla/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Filezilla/icon-64.png -------------------------------------------------------------------------------- /apps/Filezilla/packages: -------------------------------------------------------------------------------- 1 | filezilla 2 | -------------------------------------------------------------------------------- /apps/Filezilla/website: -------------------------------------------------------------------------------- 1 | https://filezilla-project.org/ 2 | -------------------------------------------------------------------------------- /apps/Firefox Rapid Release/credits: -------------------------------------------------------------------------------- 1 | Mozilla Foundation. 2 | -------------------------------------------------------------------------------- /apps/Firefox Rapid Release/website: -------------------------------------------------------------------------------- 1 | https://firefox.com 2 | -------------------------------------------------------------------------------- /apps/Flameshot/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Flameshot/icon-24.png -------------------------------------------------------------------------------- /apps/Flameshot/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Flameshot/icon-64.png -------------------------------------------------------------------------------- /apps/Flameshot/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | 4 | sudo rm -f /usr/local/bin/flameshot 5 | -------------------------------------------------------------------------------- /apps/Flameshot/website: -------------------------------------------------------------------------------- 1 | https://flameshot.org/ 2 | -------------------------------------------------------------------------------- /apps/Floorp/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Floorp/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Floorp/icon-24.png -------------------------------------------------------------------------------- /apps/Floorp/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Floorp/icon-64.png -------------------------------------------------------------------------------- /apps/Floorp/website: -------------------------------------------------------------------------------- 1 | https://floorp.app/en/ 2 | -------------------------------------------------------------------------------- /apps/Flow/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Flow/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Flow/icon-24.png -------------------------------------------------------------------------------- /apps/Flow/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Flow/icon-64.png -------------------------------------------------------------------------------- /apps/Flow/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo rm -rf /opt/flow /usr/local/bin/flow /usr/share/applications/flow-browser.desktop 4 | -------------------------------------------------------------------------------- /apps/Flow/website: -------------------------------------------------------------------------------- 1 | https://www.ekioh.com/flow-browser/ 2 | -------------------------------------------------------------------------------- /apps/FreeTube/credits: -------------------------------------------------------------------------------- 1 | Installation Script and added to Pi-Apps by RPICoder 2 | -------------------------------------------------------------------------------- /apps/FreeTube/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/FreeTube/icon-24.png -------------------------------------------------------------------------------- /apps/FreeTube/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/FreeTube/icon-64.png -------------------------------------------------------------------------------- /apps/FreeTube/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #Uninstalling FreeTube 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/FreeTube/website: -------------------------------------------------------------------------------- 1 | https://freetubeapp.io/ -------------------------------------------------------------------------------- /apps/Friday Night Funkin' Rewritten/website: -------------------------------------------------------------------------------- 1 | https://github.com/HTV04/funkin-rewritten 2 | -------------------------------------------------------------------------------- /apps/Fritzing/credits: -------------------------------------------------------------------------------- 1 | theofficialgman for writing the install script 2 | -------------------------------------------------------------------------------- /apps/Fritzing/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Fritzing/icon-24.png -------------------------------------------------------------------------------- /apps/Fritzing/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Fritzing/icon-64.png -------------------------------------------------------------------------------- /apps/Fritzing/website: -------------------------------------------------------------------------------- 1 | https://fritzing.org/ 2 | -------------------------------------------------------------------------------- /apps/GIMP/credits: -------------------------------------------------------------------------------- 1 | Made by The GIMP Team 2 | Added to Pi-Apps by Lightstrike on Discord 3 | -------------------------------------------------------------------------------- /apps/GIMP/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/GIMP/icon-24.png -------------------------------------------------------------------------------- /apps/GIMP/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/GIMP/icon-64.png -------------------------------------------------------------------------------- /apps/GIMP/packages: -------------------------------------------------------------------------------- 1 | gimp 2 | -------------------------------------------------------------------------------- /apps/GIMP/website: -------------------------------------------------------------------------------- 1 | https://www.gimp.org/ 2 | -------------------------------------------------------------------------------- /apps/GParted/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/GParted/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/GParted/icon-24.png -------------------------------------------------------------------------------- /apps/GParted/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/GParted/icon-64.png -------------------------------------------------------------------------------- /apps/GParted/packages: -------------------------------------------------------------------------------- 1 | gparted 2 | -------------------------------------------------------------------------------- /apps/GParted/website: -------------------------------------------------------------------------------- 1 | https://gparted.org 2 | -------------------------------------------------------------------------------- /apps/Geany Dark Mode/credits: -------------------------------------------------------------------------------- 1 | Botspot. Oh yeah. 2 | -------------------------------------------------------------------------------- /apps/Geany Dark Mode/website: -------------------------------------------------------------------------------- 1 | https://github.com/codebrainz/geany-themes 2 | -------------------------------------------------------------------------------- /apps/Geekbench 5/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Geekbench 5/icon-24.png -------------------------------------------------------------------------------- /apps/Geekbench 5/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Geekbench 5/icon-64.png -------------------------------------------------------------------------------- /apps/Geekbench 5/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo rm -rf /opt/geekbench5 /usr/local/bin/geekbench5 || error "Failed to remove Geekbench binaries!" 3 | -------------------------------------------------------------------------------- /apps/Geekbench 5/website: -------------------------------------------------------------------------------- 1 | https://www.geekbench.com/ 2 | -------------------------------------------------------------------------------- /apps/Geekbench 6/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Geekbench 6/icon-24.png -------------------------------------------------------------------------------- /apps/Geekbench 6/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Geekbench 6/icon-64.png -------------------------------------------------------------------------------- /apps/Geekbench 6/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo rm -rf /opt/geekbench6 /usr/local/bin/geekbench6 || error "Failed to remove Geekbench binaries!" 3 | -------------------------------------------------------------------------------- /apps/Geekbench 6/website: -------------------------------------------------------------------------------- 1 | https://www.geekbench.com/ 2 | -------------------------------------------------------------------------------- /apps/Github Desktop/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Github Desktop/website: -------------------------------------------------------------------------------- 1 | https://desktop.github.com/ 2 | -------------------------------------------------------------------------------- /apps/Github-CLI/credits: -------------------------------------------------------------------------------- 1 | Added to pi-apps by Itai-Nelken 2 | -------------------------------------------------------------------------------- /apps/Github-CLI/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Github-CLI/icon-24.png -------------------------------------------------------------------------------- /apps/Github-CLI/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Github-CLI/icon-64.png -------------------------------------------------------------------------------- /apps/Github-CLI/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #uninstall 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Github-CLI/website: -------------------------------------------------------------------------------- 1 | https://cli.github.com/ 2 | -------------------------------------------------------------------------------- /apps/Gnome Builder IDE/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install org.gnome.Builder || exit 1 6 | -------------------------------------------------------------------------------- /apps/Gnome Builder IDE/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall org.gnome.Builder || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Gnome Builder IDE/website: -------------------------------------------------------------------------------- 1 | https://wiki.gnome.org/Apps/Builder 2 | -------------------------------------------------------------------------------- /apps/Gnome Maps/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Gnome Maps/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Gnome Maps/icon-24.png -------------------------------------------------------------------------------- /apps/Gnome Maps/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Gnome Maps/icon-64.png -------------------------------------------------------------------------------- /apps/Gnome Maps/packages: -------------------------------------------------------------------------------- 1 | gnome-maps 2 | -------------------------------------------------------------------------------- /apps/Gnome Maps/website: -------------------------------------------------------------------------------- 1 | https://apps.gnome.org/Maps/ 2 | -------------------------------------------------------------------------------- /apps/Gnome Software/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Gnome Software/website: -------------------------------------------------------------------------------- 1 | https://wiki.gnome.org/Apps/Software 2 | -------------------------------------------------------------------------------- /apps/Gnumeric/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Gnumeric/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Gnumeric/icon-24.png -------------------------------------------------------------------------------- /apps/Gnumeric/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Gnumeric/icon-64.png -------------------------------------------------------------------------------- /apps/Gnumeric/packages: -------------------------------------------------------------------------------- 1 | gnumeric 2 | -------------------------------------------------------------------------------- /apps/Gnumeric/website: -------------------------------------------------------------------------------- 1 | http://www.gnumeric.org/ 2 | -------------------------------------------------------------------------------- /apps/Godot/credits: -------------------------------------------------------------------------------- 1 | Credits to Juan Linietsky and Ariel Manzur for creating Godot Engine. 2 | -------------------------------------------------------------------------------- /apps/Godot/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Godot/icon-24.png -------------------------------------------------------------------------------- /apps/Godot/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Godot/icon-64.png -------------------------------------------------------------------------------- /apps/Godot/website: -------------------------------------------------------------------------------- 1 | https://godotengine.org/ 2 | -------------------------------------------------------------------------------- /apps/Guake Terminal/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Guake Terminal/website: -------------------------------------------------------------------------------- 1 | http://guake-project.org/ 2 | -------------------------------------------------------------------------------- /apps/HTTrack Website Copier/packages: -------------------------------------------------------------------------------- 1 | httrack webhttrack -------------------------------------------------------------------------------- /apps/HTTrack Website Copier/website: -------------------------------------------------------------------------------- 1 | https://httrack.com 2 | -------------------------------------------------------------------------------- /apps/Hangover/credits: -------------------------------------------------------------------------------- 1 | @AndreRH 2 | -------------------------------------------------------------------------------- /apps/Hangover/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Hangover/icon-24.png -------------------------------------------------------------------------------- /apps/Hangover/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Hangover/icon-64.png -------------------------------------------------------------------------------- /apps/Hangover/website: -------------------------------------------------------------------------------- 1 | https://github.com/AndreRH/hangover 2 | -------------------------------------------------------------------------------- /apps/Heroes 2/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Heroes 2/icon-24.png -------------------------------------------------------------------------------- /apps/Heroes 2/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Heroes 2/icon-64.png -------------------------------------------------------------------------------- /apps/Heroes 2/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -fr ~/.fheroes2 3 | rm ~/.local/share/applications/fheroes2.desktop 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/Heroes 2/website: -------------------------------------------------------------------------------- 1 | https://github.com/ihhub/fheroes2 -------------------------------------------------------------------------------- /apps/Https File Server/credits: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/Https File Server/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -f $HOME/hfs.exe ~/.local/share/applications/hfs.desktop 3 | -------------------------------------------------------------------------------- /apps/Https File Server/website: -------------------------------------------------------------------------------- 1 | http://www.rejetto.com/hfs/?f=intro 2 | -------------------------------------------------------------------------------- /apps/Hyper/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Hyper/icon-24.png -------------------------------------------------------------------------------- /apps/Hyper/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Hyper/icon-64.png -------------------------------------------------------------------------------- /apps/Hyper/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Allow packages required by this app to be uninstalled 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/Hyper/website: -------------------------------------------------------------------------------- 1 | https://hyper.is 2 | -------------------------------------------------------------------------------- /apps/INAV Configurator/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/INAV Configurator/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/INAV Configurator/website: -------------------------------------------------------------------------------- 1 | https://github.com/iNavFlight/inav-configurator 2 | -------------------------------------------------------------------------------- /apps/Imager/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Imager/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Imager/icon-24.png -------------------------------------------------------------------------------- /apps/Imager/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Imager/icon-64.png -------------------------------------------------------------------------------- /apps/Imager/packages: -------------------------------------------------------------------------------- 1 | rpi-imager 2 | -------------------------------------------------------------------------------- /apps/Imager/website: -------------------------------------------------------------------------------- 1 | https://www.raspberrypi.org/blog/raspberry-pi-imager-imaging-utility 2 | -------------------------------------------------------------------------------- /apps/Inkscape/credits: -------------------------------------------------------------------------------- 1 | 1Spinne in issue #1262 2 | -------------------------------------------------------------------------------- /apps/Inkscape/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Inkscape/icon-24.png -------------------------------------------------------------------------------- /apps/Inkscape/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Inkscape/icon-64.png -------------------------------------------------------------------------------- /apps/Inkscape/packages: -------------------------------------------------------------------------------- 1 | inkscape 2 | -------------------------------------------------------------------------------- /apps/Inkscape/website: -------------------------------------------------------------------------------- 1 | https://inkscape.org 2 | -------------------------------------------------------------------------------- /apps/Intellij IDEA/credits: -------------------------------------------------------------------------------- 1 | Thanks to GlacierPark19 for suggesting this app be added. 2 | Botspot made it. 3 | -------------------------------------------------------------------------------- /apps/Intellij IDEA/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Intellij IDEA/icon-24.png -------------------------------------------------------------------------------- /apps/Intellij IDEA/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Intellij IDEA/icon-64.png -------------------------------------------------------------------------------- /apps/Intellij IDEA/website: -------------------------------------------------------------------------------- 1 | https://www.jetbrains.com/idea/ 2 | -------------------------------------------------------------------------------- /apps/Kdenlive/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Kdenlive/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Kdenlive/icon-24.png -------------------------------------------------------------------------------- /apps/Kdenlive/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Kdenlive/icon-64.png -------------------------------------------------------------------------------- /apps/Kdenlive/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install org.kde.kdenlive || exit 1 6 | -------------------------------------------------------------------------------- /apps/Kdenlive/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall org.kde.kdenlive || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Kdenlive/website: -------------------------------------------------------------------------------- 1 | https://kdenlive.org/ 2 | -------------------------------------------------------------------------------- /apps/KeePassXC/credits: -------------------------------------------------------------------------------- 1 | @ryanfortner (GitHub) for the scripts 2 | @raspbian-addons maintainers for the deb 3 | -------------------------------------------------------------------------------- /apps/KeePassXC/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/KeePassXC/icon-24.png -------------------------------------------------------------------------------- /apps/KeePassXC/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/KeePassXC/icon-64.png -------------------------------------------------------------------------------- /apps/KeePassXC/website: -------------------------------------------------------------------------------- 1 | https://github.com/keepassxreboot/keepassxc 2 | -------------------------------------------------------------------------------- /apps/KiCad/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/KiCad/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/KiCad/icon-24.png -------------------------------------------------------------------------------- /apps/KiCad/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/KiCad/icon-64.png -------------------------------------------------------------------------------- /apps/KiCad/website: -------------------------------------------------------------------------------- 1 | https://www.kicad.org/ 2 | -------------------------------------------------------------------------------- /apps/Kodi/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Kodi/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Kodi/icon-24.png -------------------------------------------------------------------------------- /apps/Kodi/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Kodi/icon-64.png -------------------------------------------------------------------------------- /apps/Kodi/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | 5 | 6 | -------------------------------------------------------------------------------- /apps/Kodi/website: -------------------------------------------------------------------------------- 1 | https://kodi.tv/about 2 | -------------------------------------------------------------------------------- /apps/Kolourpaint/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Kolourpaint/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Kolourpaint/icon-24.png -------------------------------------------------------------------------------- /apps/Kolourpaint/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Kolourpaint/icon-64.png -------------------------------------------------------------------------------- /apps/Kolourpaint/packages: -------------------------------------------------------------------------------- 1 | kolourpaint 2 | -------------------------------------------------------------------------------- /apps/Kolourpaint/website: -------------------------------------------------------------------------------- 1 | https://apps.kde.org/kolourpaint/ 2 | -------------------------------------------------------------------------------- /apps/Krita/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Krita/icon-24.png -------------------------------------------------------------------------------- /apps/Krita/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Krita/icon-64.png -------------------------------------------------------------------------------- /apps/Krita/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install org.kde.krita || exit 1 6 | -------------------------------------------------------------------------------- /apps/Krita/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall org.kde.krita || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Krita/website: -------------------------------------------------------------------------------- 1 | https://krita.org/ 2 | -------------------------------------------------------------------------------- /apps/LMMS/credits: -------------------------------------------------------------------------------- 1 | Thanks to: 2 | - the LMMS community for developing LMMS 3 | - @Crilum on GitHub for adding LMMS to Pi-Apps 4 | -------------------------------------------------------------------------------- /apps/LMMS/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LMMS/icon-24.png -------------------------------------------------------------------------------- /apps/LMMS/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LMMS/icon-64.png -------------------------------------------------------------------------------- /apps/LMMS/packages: -------------------------------------------------------------------------------- 1 | lmms lmms-common 2 | -------------------------------------------------------------------------------- /apps/LMMS/website: -------------------------------------------------------------------------------- 1 | https://lmms.io 2 | -------------------------------------------------------------------------------- /apps/Legcord/credits: -------------------------------------------------------------------------------- 1 | @ryanfortner (GitHub) 2 | -------------------------------------------------------------------------------- /apps/Legcord/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Legcord/icon-24.png -------------------------------------------------------------------------------- /apps/Legcord/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Legcord/icon-64.png -------------------------------------------------------------------------------- /apps/Legcord/website: -------------------------------------------------------------------------------- 1 | https://github.com/Legcord/Legcord 2 | -------------------------------------------------------------------------------- /apps/Lego Digital Designer/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Lego Digital Designer/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/lego-digital-designer-rpi 2 | -------------------------------------------------------------------------------- /apps/LibreCAD/credits: -------------------------------------------------------------------------------- 1 | @Jai-JAP for adding this app to pi-apps 2 | -------------------------------------------------------------------------------- /apps/LibreCAD/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibreCAD/icon-24.png -------------------------------------------------------------------------------- /apps/LibreCAD/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibreCAD/icon-64.png -------------------------------------------------------------------------------- /apps/LibreCAD/packages: -------------------------------------------------------------------------------- 1 | librecad librecad-data 2 | -------------------------------------------------------------------------------- /apps/LibreCAD/website: -------------------------------------------------------------------------------- 1 | https://librecad.org/ 2 | -------------------------------------------------------------------------------- /apps/LibreOffice/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/LibreOffice/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibreOffice/icon-24.png -------------------------------------------------------------------------------- /apps/LibreOffice/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibreOffice/icon-64.png -------------------------------------------------------------------------------- /apps/LibreOffice/website: -------------------------------------------------------------------------------- 1 | https://www.libreoffice.org 2 | -------------------------------------------------------------------------------- /apps/LibrePCB/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibrePCB/icon-24.png -------------------------------------------------------------------------------- /apps/LibrePCB/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibrePCB/icon-64.png -------------------------------------------------------------------------------- /apps/LibrePCB/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install org.librepcb.LibrePCB || exit 1 6 | -------------------------------------------------------------------------------- /apps/LibrePCB/website: -------------------------------------------------------------------------------- 1 | https://librepcb.org/ 2 | -------------------------------------------------------------------------------- /apps/LibreWolf/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/LibreWolf/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibreWolf/icon-24.png -------------------------------------------------------------------------------- /apps/LibreWolf/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LibreWolf/icon-64.png -------------------------------------------------------------------------------- /apps/LibreWolf/website: -------------------------------------------------------------------------------- 1 | https://librewolf.net/ 2 | -------------------------------------------------------------------------------- /apps/Libreoffice MS theme/credits: -------------------------------------------------------------------------------- 1 | Botspot made this script and theme. -------------------------------------------------------------------------------- /apps/Libreoffice MS theme/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/libreoffice-ms-theme 2 | -------------------------------------------------------------------------------- /apps/Lightpad/credits: -------------------------------------------------------------------------------- 1 | Installation Script Made By RPICoder 2 | App Added To Pi-Apps by RPICoder -------------------------------------------------------------------------------- /apps/Lightpad/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Lightpad/icon-24.png -------------------------------------------------------------------------------- /apps/Lightpad/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Lightpad/icon-64.png -------------------------------------------------------------------------------- /apps/Lightpad/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | rm -f ~/.local/share/applications/lightpad.desktop 4 | -------------------------------------------------------------------------------- /apps/Lightpad/website: -------------------------------------------------------------------------------- 1 | https://github.com/libredeb/lightpad 2 | -------------------------------------------------------------------------------- /apps/LineRider/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LineRider/icon-24.png -------------------------------------------------------------------------------- /apps/LineRider/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/LineRider/icon-64.png -------------------------------------------------------------------------------- /apps/LineRider/website: -------------------------------------------------------------------------------- 1 | https://github.com/Sussy-OS/LRA-Community-Edition 2 | -------------------------------------------------------------------------------- /apps/Linux Wifi Hotspot/website: -------------------------------------------------------------------------------- 1 | https://github.com/lakinduakash/linux-wifi-hotspot 2 | -------------------------------------------------------------------------------- /apps/Marathon/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Marathon/icon-24.png -------------------------------------------------------------------------------- /apps/Marathon/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Marathon/icon-64.png -------------------------------------------------------------------------------- /apps/Marathon/website: -------------------------------------------------------------------------------- 1 | https://alephone.lhowon.org 2 | -------------------------------------------------------------------------------- /apps/MatterControl/credits: -------------------------------------------------------------------------------- 1 | Botspot and theofficialgman 2 | -------------------------------------------------------------------------------- /apps/MatterControl/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/MatterControl/icon-24.png -------------------------------------------------------------------------------- /apps/MatterControl/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/MatterControl/icon-64.png -------------------------------------------------------------------------------- /apps/MatterControl/website: -------------------------------------------------------------------------------- 1 | https://mattercontrol.com 2 | -------------------------------------------------------------------------------- /apps/Microsoft PowerShell/credits: -------------------------------------------------------------------------------- 1 | Made by Microsoft [ Open Source Code ] 2 | Ported by TurquoiseTNT 3 | -------------------------------------------------------------------------------- /apps/Microsoft PowerShell/website: -------------------------------------------------------------------------------- 1 | https://docs.microsoft.com/en-us/powershell/scripting/install/install-raspbian?view=powershell-7.2 2 | -------------------------------------------------------------------------------- /apps/Microsoft Teams/credits: -------------------------------------------------------------------------------- 1 | @IsmaelMartinez on GitHub for the creation of the app. 2 | -------------------------------------------------------------------------------- /apps/Microsoft Teams/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | 4 | sudo rm -rf /opt/teams-for-linux 5 | -------------------------------------------------------------------------------- /apps/Microsoft Teams/website: -------------------------------------------------------------------------------- 1 | https://github.com/IsmaelMartinez/teams-for-linux 2 | -------------------------------------------------------------------------------- /apps/Min/credits: -------------------------------------------------------------------------------- 1 | @ryanfortner (GitHub) 2 | -------------------------------------------------------------------------------- /apps/Min/description: -------------------------------------------------------------------------------- 1 | A fast, minimal browser that protects your privacy. 2 | 3 | To run: Menu -> Internet -> Min 4 | To run in terminal: min 5 | -------------------------------------------------------------------------------- /apps/Min/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Min/icon-24.png -------------------------------------------------------------------------------- /apps/Min/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Min/icon-64.png -------------------------------------------------------------------------------- /apps/Min/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Min/website: -------------------------------------------------------------------------------- 1 | https://minbrowser.org/ 2 | -------------------------------------------------------------------------------- /apps/Minecraft Bedrock/website: -------------------------------------------------------------------------------- 1 | https://github.com/ChristopherHX/linux-packaging-scripts/releases/tag/appimage 2 | -------------------------------------------------------------------------------- /apps/Minecraft Java GDLauncher/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/Minecraft Java GDLauncher/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Minecraft Java GDLauncher/website: -------------------------------------------------------------------------------- 1 | https://gdevs.io/ 2 | -------------------------------------------------------------------------------- /apps/Minecraft Java Prism Launcher/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | 5 | rm_external_repo "adoptium" 6 | -------------------------------------------------------------------------------- /apps/Minecraft Java Prism Launcher/website: -------------------------------------------------------------------------------- 1 | https://prismlauncher.org/ 2 | -------------------------------------------------------------------------------- /apps/Minecraft Pi (Modded)/website: -------------------------------------------------------------------------------- 1 | https://discord.com/invite/aDqejQGMMy 2 | -------------------------------------------------------------------------------- /apps/Mission Planner/credits: -------------------------------------------------------------------------------- 1 | Botspot made this app. 2 | -------------------------------------------------------------------------------- /apps/Mission Planner/website: -------------------------------------------------------------------------------- 1 | https://ardupilot.org/planner/ 2 | -------------------------------------------------------------------------------- /apps/Monero GUI/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Monero GUI/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Monero GUI/icon-24.png -------------------------------------------------------------------------------- /apps/Monero GUI/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Monero GUI/icon-64.png -------------------------------------------------------------------------------- /apps/Monero GUI/website: -------------------------------------------------------------------------------- 1 | https://getmonero.org 2 | -------------------------------------------------------------------------------- /apps/More RAM/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/More RAM/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/More RAM/icon-24.png -------------------------------------------------------------------------------- /apps/More RAM/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/More RAM/icon-64.png -------------------------------------------------------------------------------- /apps/More RAM/website: -------------------------------------------------------------------------------- 1 | https://forums.raspberrypi.com/viewtopic.php?t=327238 -------------------------------------------------------------------------------- /apps/Mu/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Mu/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Mu/icon-24.png -------------------------------------------------------------------------------- /apps/Mu/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Mu/icon-64.png -------------------------------------------------------------------------------- /apps/Mu/packages: -------------------------------------------------------------------------------- 1 | mu-editor 2 | -------------------------------------------------------------------------------- /apps/Mu/website: -------------------------------------------------------------------------------- 1 | https://codewith.mu/ 2 | -------------------------------------------------------------------------------- /apps/Mullvad/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Mullvad/icon-24.png -------------------------------------------------------------------------------- /apps/Mullvad/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Mullvad/icon-64.png -------------------------------------------------------------------------------- /apps/Mullvad/website: -------------------------------------------------------------------------------- 1 | https://sourceforge.net/projects/tor-browser-ports/files/ 2 | -------------------------------------------------------------------------------- /apps/MuseScore/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | theofficialgman for appimages 3 | -------------------------------------------------------------------------------- /apps/MuseScore/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/MuseScore/icon-24.png -------------------------------------------------------------------------------- /apps/MuseScore/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/MuseScore/icon-64.png -------------------------------------------------------------------------------- /apps/MuseScore/website: -------------------------------------------------------------------------------- 1 | https://musescore.org 2 | -------------------------------------------------------------------------------- /apps/Nautilus/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Nautilus/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Nautilus/icon-24.png -------------------------------------------------------------------------------- /apps/Nautilus/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Nautilus/icon-64.png -------------------------------------------------------------------------------- /apps/Nautilus/packages: -------------------------------------------------------------------------------- 1 | nautilus 2 | -------------------------------------------------------------------------------- /apps/Nautilus/website: -------------------------------------------------------------------------------- 1 | https://wiki.gnome.org/Apps/Files 2 | -------------------------------------------------------------------------------- /apps/Nemo/credits: -------------------------------------------------------------------------------- 1 | open-sorcerer64 2 | linuxmint 3 | -------------------------------------------------------------------------------- /apps/Nemo/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Nemo/icon-24.png -------------------------------------------------------------------------------- /apps/Nemo/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Nemo/icon-64.png -------------------------------------------------------------------------------- /apps/Nemo/packages: -------------------------------------------------------------------------------- 1 | nemo 2 | -------------------------------------------------------------------------------- /apps/Nemo/website: -------------------------------------------------------------------------------- 1 | https://github.com/linuxmint/nemo 2 | -------------------------------------------------------------------------------- /apps/Neofetch/credits: -------------------------------------------------------------------------------- 1 | App Credit: dylanaraps - (GitHub: https://github.com/dylanaraps) 2 | Patches: theofficialgman 3 | -------------------------------------------------------------------------------- /apps/Neofetch/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Neofetch/icon-24.png -------------------------------------------------------------------------------- /apps/Neofetch/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Neofetch/icon-64.png -------------------------------------------------------------------------------- /apps/Neofetch/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | 5 | sudo rm -rf /usr/bin/neofetch /usr/man1/neofetch.1* 6 | -------------------------------------------------------------------------------- /apps/Neofetch/website: -------------------------------------------------------------------------------- 1 | https://github.com/dylanaraps/neofetch 2 | -------------------------------------------------------------------------------- /apps/NixNote2/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/NixNote2/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/NixNote2/icon-24.png -------------------------------------------------------------------------------- /apps/NixNote2/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/NixNote2/icon-64.png -------------------------------------------------------------------------------- /apps/NixNote2/packages: -------------------------------------------------------------------------------- 1 | nixnote2 2 | -------------------------------------------------------------------------------- /apps/NixNote2/website: -------------------------------------------------------------------------------- 1 | https://github.com/baumgarr/Nixnote2 2 | -------------------------------------------------------------------------------- /apps/Node.js/credits: -------------------------------------------------------------------------------- 1 | Script by ilobilo 2 | Script improved by Itai-Nelken 3 | -------------------------------------------------------------------------------- /apps/Node.js/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Node.js/icon-24.png -------------------------------------------------------------------------------- /apps/Node.js/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Node.js/icon-64.png -------------------------------------------------------------------------------- /apps/Node.js/website: -------------------------------------------------------------------------------- 1 | https://nodesource.com/ 2 | -------------------------------------------------------------------------------- /apps/Notejot/credits: -------------------------------------------------------------------------------- 1 | Thanks to: 2 | - @lainsce on GitHub for creating the app! 3 | - @Crilum on GitHub for adding this app to Pi-Apps 4 | -------------------------------------------------------------------------------- /apps/Notejot/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Notejot/icon-24.png -------------------------------------------------------------------------------- /apps/Notejot/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Notejot/icon-64.png -------------------------------------------------------------------------------- /apps/Notejot/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install io.github.lainsce.Notejot || exit 1 6 | -------------------------------------------------------------------------------- /apps/Notejot/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall io.github.lainsce.Notejot || exit 1 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/Notejot/website: -------------------------------------------------------------------------------- 1 | https://github.com/lainsce/notejot 2 | -------------------------------------------------------------------------------- /apps/Notepad ++/credits: -------------------------------------------------------------------------------- 1 | App added to pi-apps by RPICoder 2 | -------------------------------------------------------------------------------- /apps/Notepad ++/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Notepad ++/icon-24.png -------------------------------------------------------------------------------- /apps/Notepad ++/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Notepad ++/icon-64.png -------------------------------------------------------------------------------- /apps/Notepad ++/website: -------------------------------------------------------------------------------- 1 | https://notepad-plus-plus.org/ 2 | -------------------------------------------------------------------------------- /apps/OBS Studio/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/OBS Studio/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/OBS Studio/icon-24.png -------------------------------------------------------------------------------- /apps/OBS Studio/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/OBS Studio/icon-64.png -------------------------------------------------------------------------------- /apps/OBS Studio/website: -------------------------------------------------------------------------------- 1 | https://obsproject.com/ 2 | -------------------------------------------------------------------------------- /apps/Obsidian/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Obsidian/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Obsidian/icon-24.png -------------------------------------------------------------------------------- /apps/Obsidian/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Obsidian/icon-64.png -------------------------------------------------------------------------------- /apps/Obsidian/website: -------------------------------------------------------------------------------- 1 | https://obsidian.md/ 2 | -------------------------------------------------------------------------------- /apps/Oh My Posh/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Oh My Posh/icon-24.png -------------------------------------------------------------------------------- /apps/Oh My Posh/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Oh My Posh/icon-64.png -------------------------------------------------------------------------------- /apps/Oh My Posh/website: -------------------------------------------------------------------------------- 1 | ohmyposh.dev 2 | -------------------------------------------------------------------------------- /apps/Ollama GUI/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Ollama GUI/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ollama GUI/icon-24.png -------------------------------------------------------------------------------- /apps/Ollama GUI/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ollama GUI/icon-64.png -------------------------------------------------------------------------------- /apps/Ollama GUI/website: -------------------------------------------------------------------------------- 1 | https://ollama.com 2 | -------------------------------------------------------------------------------- /apps/OnionShare/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/OnionShare/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/OnionShare/icon-24.png -------------------------------------------------------------------------------- /apps/OnionShare/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/OnionShare/icon-64.png -------------------------------------------------------------------------------- /apps/OnionShare/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages flatpak || exit 1 4 | 5 | flatpak_install org.onionshare.OnionShare || exit 1 6 | -------------------------------------------------------------------------------- /apps/OnionShare/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall org.onionshare.OnionShare || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/OnionShare/website: -------------------------------------------------------------------------------- 1 | https://onionshare.org/ 2 | -------------------------------------------------------------------------------- /apps/Oomox Theme Designer/website: -------------------------------------------------------------------------------- 1 | https://github.com/themix-project/oomox 2 | -------------------------------------------------------------------------------- /apps/Open-Typer/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Open-Typer/icon-24.png -------------------------------------------------------------------------------- /apps/Open-Typer/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Open-Typer/icon-64.png -------------------------------------------------------------------------------- /apps/Open-Typer/website: -------------------------------------------------------------------------------- 1 | https://github.com/Open-Typer/Open-Typer 2 | -------------------------------------------------------------------------------- /apps/OpenSCAD/credits: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/OpenSCAD/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/OpenSCAD/icon-24.png -------------------------------------------------------------------------------- /apps/OpenSCAD/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/OpenSCAD/icon-64.png -------------------------------------------------------------------------------- /apps/OpenSCAD/website: -------------------------------------------------------------------------------- 1 | http://www.openscad.org/ 2 | https://github.com/koendv/openscad-raspberrypi 3 | -------------------------------------------------------------------------------- /apps/Organic Maps/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Organic Maps/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Organic Maps/icon-24.png -------------------------------------------------------------------------------- /apps/Organic Maps/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Organic Maps/icon-64.png -------------------------------------------------------------------------------- /apps/Organic Maps/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall app.organicmaps.desktop || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Organic Maps/website: -------------------------------------------------------------------------------- 1 | https://flathub.org/apps/app.organicmaps.desktop 2 | -------------------------------------------------------------------------------- /apps/PPSSPP (PSP emulator)/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/PPSSPP (PSP emulator)/website: -------------------------------------------------------------------------------- 1 | http://ppsspp.org 2 | -------------------------------------------------------------------------------- /apps/Pac-Man/credits: -------------------------------------------------------------------------------- 1 | Pac-Man source code from ebuc99 on github https://github.com/ebuc99/pacman 2 | -------------------------------------------------------------------------------- /apps/Pac-Man/description: -------------------------------------------------------------------------------- 1 | Pac-Man clone in SDL2 and C/C++ 2 | To run: Menu -> Games -> Pacman (SDL) 3 | To run in a terminal: pacman_sdl 4 | -------------------------------------------------------------------------------- /apps/Pac-Man/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pac-Man/icon-24.png -------------------------------------------------------------------------------- /apps/Pac-Man/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pac-Man/icon-64.png -------------------------------------------------------------------------------- /apps/Pac-Man/website: -------------------------------------------------------------------------------- 1 | https://github.com/ebuc99/pacman 2 | -------------------------------------------------------------------------------- /apps/PeaZip/credits: -------------------------------------------------------------------------------- 1 | @ryanfortner (GitHub) 2 | -------------------------------------------------------------------------------- /apps/PeaZip/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PeaZip/icon-24.png -------------------------------------------------------------------------------- /apps/PeaZip/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PeaZip/icon-64.png -------------------------------------------------------------------------------- /apps/PeaZip/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall io.github.peazip.PeaZip || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/PeaZip/website: -------------------------------------------------------------------------------- 1 | https://peazip.github.io 2 | -------------------------------------------------------------------------------- /apps/Persepolis Download Manager/website: -------------------------------------------------------------------------------- 1 | https://persepolisdm.github.io/ 2 | -------------------------------------------------------------------------------- /apps/Pi Power Tools/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/Pi-Power-Tools 2 | -------------------------------------------------------------------------------- /apps/Pi-Apps Terminal Plugin (bash)/credits: -------------------------------------------------------------------------------- 1 | Created and added to pi-apps by Itai-Nelken 2 | -------------------------------------------------------------------------------- /apps/Pi-Apps Terminal Plugin (bash)/website: -------------------------------------------------------------------------------- 1 | https://github.com/Itai-Nelken/PiApps-terminal_bash-edition 2 | -------------------------------------------------------------------------------- /apps/PiGro/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PiGro/icon-24.png -------------------------------------------------------------------------------- /apps/PiGro/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PiGro/icon-64.png -------------------------------------------------------------------------------- /apps/PiGro/website: -------------------------------------------------------------------------------- 1 | https://github.com/actionschnitzel/PiGro-Aid- 2 | -------------------------------------------------------------------------------- /apps/PiSafe/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PiSafe/icon-24.png -------------------------------------------------------------------------------- /apps/PiSafe/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PiSafe/icon-64.png -------------------------------------------------------------------------------- /apps/PiSafe/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pisafe uninstall -y 3 | 4 | exit 0 5 | -------------------------------------------------------------------------------- /apps/PiSafe/website: -------------------------------------------------------------------------------- 1 | https://github.com/RichardMidnight/pi-safe 2 | -------------------------------------------------------------------------------- /apps/Pika Backup/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pika Backup/icon-24.png -------------------------------------------------------------------------------- /apps/Pika Backup/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pika Backup/icon-64.png -------------------------------------------------------------------------------- /apps/Pika Backup/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall org.gnome.World.PikaBackup || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Pika Backup/website: -------------------------------------------------------------------------------- 1 | https://github.com/sophie-h/pika-backup 2 | -------------------------------------------------------------------------------- /apps/Pinta/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Pinta/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pinta/icon-24.png -------------------------------------------------------------------------------- /apps/Pinta/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pinta/icon-64.png -------------------------------------------------------------------------------- /apps/Pinta/packages: -------------------------------------------------------------------------------- 1 | pinta 2 | -------------------------------------------------------------------------------- /apps/Pinta/website: -------------------------------------------------------------------------------- 1 | https://www.pinta-project.com/ 2 | -------------------------------------------------------------------------------- /apps/Pixelorama/credits: -------------------------------------------------------------------------------- 1 | Emmanouil Papadeas for writing Pixelorama 2 | 3 | theofficialgman for the installation script -------------------------------------------------------------------------------- /apps/Pixelorama/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pixelorama/icon-24.png -------------------------------------------------------------------------------- /apps/Pixelorama/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pixelorama/icon-64.png -------------------------------------------------------------------------------- /apps/Pixelorama/website: -------------------------------------------------------------------------------- 1 | https://orama-interactive.itch.io/pixelorama 2 | -------------------------------------------------------------------------------- /apps/Powerline-Shell/credits: -------------------------------------------------------------------------------- 1 | Installation Script Created By RPICoder 2 | Added To Pi-Apps By Botspot 3 | -------------------------------------------------------------------------------- /apps/Powerline-Shell/website: -------------------------------------------------------------------------------- 1 | https://github.com/techcoder20/RPI-PowerlineShell-Installer.git 2 | -------------------------------------------------------------------------------- /apps/Processing IDE/credits: -------------------------------------------------------------------------------- 1 | added by pi-dev500 2 | updated by theofficialgman -------------------------------------------------------------------------------- /apps/Processing IDE/website: -------------------------------------------------------------------------------- 1 | https://processing.org/ 2 | -------------------------------------------------------------------------------- /apps/Project OutFox/website: -------------------------------------------------------------------------------- 1 | https://projectoutfox.com/ 2 | -------------------------------------------------------------------------------- /apps/ProjectLibre/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/ProjectLibre/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Allow packages required by this app to be uninstalled 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/ProjectLibre/website: -------------------------------------------------------------------------------- 1 | https://www.projectlibre.com/product/1-alternative-microsoft-project-open-source 2 | -------------------------------------------------------------------------------- /apps/PrusaSlicer/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PrusaSlicer/icon-24.png -------------------------------------------------------------------------------- /apps/PrusaSlicer/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PrusaSlicer/icon-64.png -------------------------------------------------------------------------------- /apps/PrusaSlicer/website: -------------------------------------------------------------------------------- 1 | https://github.com/davidk/PrusaSlicer-ARM.AppImage 2 | -------------------------------------------------------------------------------- /apps/Puffin/credits: -------------------------------------------------------------------------------- 1 | Botspot added this app to Pi-Apps. 2 | -------------------------------------------------------------------------------- /apps/Puffin/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Puffin/icon-24.png -------------------------------------------------------------------------------- /apps/Puffin/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Puffin/icon-64.png -------------------------------------------------------------------------------- /apps/Puffin/website: -------------------------------------------------------------------------------- 1 | https://www.puffin.com/raspberry-pi/ 2 | -------------------------------------------------------------------------------- /apps/PyChess/credits: -------------------------------------------------------------------------------- 1 | Rak1ta 2 | Crilum 3 | -------------------------------------------------------------------------------- /apps/PyChess/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PyChess/icon-24.png -------------------------------------------------------------------------------- /apps/PyChess/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/PyChess/icon-64.png -------------------------------------------------------------------------------- /apps/PyChess/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/PyChess/website: -------------------------------------------------------------------------------- 1 | http://www.pychess.org/ 2 | -------------------------------------------------------------------------------- /apps/Pycharm CE/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pycharm CE/icon-24.png -------------------------------------------------------------------------------- /apps/Pycharm CE/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Pycharm CE/icon-64.png -------------------------------------------------------------------------------- /apps/Pycharm CE/website: -------------------------------------------------------------------------------- 1 | https://www.jetbrains.com/pycharm/ 2 | -------------------------------------------------------------------------------- /apps/QEMU/credits: -------------------------------------------------------------------------------- 1 | Added to Pi-Apps by Itai-Nelken 2 | debs compiled and packaged using QEMU2DEB (tool by Itai-Nelken) by ryanfortner. 3 | -------------------------------------------------------------------------------- /apps/QEMU/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/QEMU/icon-24.png -------------------------------------------------------------------------------- /apps/QEMU/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/QEMU/icon-64.png -------------------------------------------------------------------------------- /apps/QEMU/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/QEMU/website: -------------------------------------------------------------------------------- 1 | https://www.qemu.org/ 2 | -------------------------------------------------------------------------------- /apps/QR Code Reader/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/QR Code Reader/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall vn.hoabinh.quan.CoBang || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/QR Code Reader/website: -------------------------------------------------------------------------------- 1 | https://github.com/hongquan/CoBang 2 | -------------------------------------------------------------------------------- /apps/Quartz/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Quartz/icon-24.png -------------------------------------------------------------------------------- /apps/Quartz/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Quartz/icon-64.png -------------------------------------------------------------------------------- /apps/Quartz/website: -------------------------------------------------------------------------------- 1 | https://github.com/ksharindam/quartz-browser-qt5 2 | -------------------------------------------------------------------------------- /apps/Reaper/credits: -------------------------------------------------------------------------------- 1 | Thanks to @Crilum on GitHub for adding this app to Pi-Apps 2 | -------------------------------------------------------------------------------- /apps/Reaper/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Reaper/icon-24.png -------------------------------------------------------------------------------- /apps/Reaper/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Reaper/icon-64.png -------------------------------------------------------------------------------- /apps/Reaper/website: -------------------------------------------------------------------------------- 1 | https://reaper.fm 2 | -------------------------------------------------------------------------------- /apps/Remarkable/credits: -------------------------------------------------------------------------------- 1 | Added to Pi-Apps by Itai-Nelken. 2 | Thanks to seiferteric on GitHub for providing the DEB package fix. 3 | -------------------------------------------------------------------------------- /apps/Remarkable/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Remarkable/icon-24.png -------------------------------------------------------------------------------- /apps/Remarkable/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Remarkable/icon-64.png -------------------------------------------------------------------------------- /apps/Remarkable/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Remarkable/website: -------------------------------------------------------------------------------- 1 | https://remarkableapp.github.io 2 | -------------------------------------------------------------------------------- /apps/Renoise (Demo)/website: -------------------------------------------------------------------------------- 1 | https://renoise.com 2 | -------------------------------------------------------------------------------- /apps/RiiTag-RPC/credits: -------------------------------------------------------------------------------- 1 | RiiTag and RiiTag-RPC created by the team of RiiConnect24. 2 | Script created by libewa. 3 | -------------------------------------------------------------------------------- /apps/RiiTag-RPC/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/RiiTag-RPC/icon-24.png -------------------------------------------------------------------------------- /apps/RiiTag-RPC/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/RiiTag-RPC/icon-64.png -------------------------------------------------------------------------------- /apps/RiiTag-RPC/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo rm -f /usr/local/bin/riitag-rpc 4 | -------------------------------------------------------------------------------- /apps/RiiTag-RPC/website: -------------------------------------------------------------------------------- 1 | tag.rc24.xyz 2 | -------------------------------------------------------------------------------- /apps/Ruffle/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ruffle/icon-24.png -------------------------------------------------------------------------------- /apps/Ruffle/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ruffle/icon-64.png -------------------------------------------------------------------------------- /apps/Ruffle/website: -------------------------------------------------------------------------------- 1 | https://ruffle.rs 2 | -------------------------------------------------------------------------------- /apps/RustDesk/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/RustDesk/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/RustDesk/icon-24.png -------------------------------------------------------------------------------- /apps/RustDesk/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/RustDesk/icon-64.png -------------------------------------------------------------------------------- /apps/RustDesk/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Allow packages required by this app to be uninstalled 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/RustDesk/website: -------------------------------------------------------------------------------- 1 | https://rustdesk.com/ 2 | -------------------------------------------------------------------------------- /apps/Scratch 2/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Scratch 2/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Scratch 2/icon-24.png -------------------------------------------------------------------------------- /apps/Scratch 2/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Scratch 2/icon-64.png -------------------------------------------------------------------------------- /apps/Scratch 2/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Scratch 2/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/scratch2 2 | -------------------------------------------------------------------------------- /apps/Scratch 3/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Scratch 3/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Scratch 3/icon-24.png -------------------------------------------------------------------------------- /apps/Scratch 3/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Scratch 3/icon-64.png -------------------------------------------------------------------------------- /apps/Scratch 3/packages: -------------------------------------------------------------------------------- 1 | scratch3 2 | -------------------------------------------------------------------------------- /apps/Scratch 3/website: -------------------------------------------------------------------------------- 1 | https://scratch.mit.edu 2 | -------------------------------------------------------------------------------- /apps/Scrcpy/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Scrcpy/icon-24.png -------------------------------------------------------------------------------- /apps/Scrcpy/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Scrcpy/icon-64.png -------------------------------------------------------------------------------- /apps/Scrcpy/website: -------------------------------------------------------------------------------- 1 | https://github.com/Genymobile/scrcpy 2 | -------------------------------------------------------------------------------- /apps/Screenshot/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Screenshot/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Screenshot/icon-24.png -------------------------------------------------------------------------------- /apps/Screenshot/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Screenshot/icon-64.png -------------------------------------------------------------------------------- /apps/Screenshot/packages: -------------------------------------------------------------------------------- 1 | gnome-screenshot 2 | -------------------------------------------------------------------------------- /apps/Screenshot/website: -------------------------------------------------------------------------------- 1 | https://apps.gnome.org/app/org.gnome.Screenshot 2 | -------------------------------------------------------------------------------- /apps/Shattered Pixel Dungeon/website: -------------------------------------------------------------------------------- 1 | https://shatteredpixel.com/ 2 | -------------------------------------------------------------------------------- /apps/Shotwell/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Shotwell/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Shotwell/icon-24.png -------------------------------------------------------------------------------- /apps/Shotwell/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Shotwell/icon-64.png -------------------------------------------------------------------------------- /apps/Shotwell/packages: -------------------------------------------------------------------------------- 1 | shotwell 2 | -------------------------------------------------------------------------------- /apps/Shotwell/website: -------------------------------------------------------------------------------- 1 | https://shotwell-project.org/doc/html/ 2 | -------------------------------------------------------------------------------- /apps/Signal/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Signal/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Signal/icon-24.png -------------------------------------------------------------------------------- /apps/Signal/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Signal/icon-64.png -------------------------------------------------------------------------------- /apps/Signal/website: -------------------------------------------------------------------------------- 1 | https://www.signal.org 2 | -------------------------------------------------------------------------------- /apps/SimpleScreenRecorder/credits: -------------------------------------------------------------------------------- 1 | App Made by: MaartenBaert 2 | Suggestion from Kolpix 3 | -------------------------------------------------------------------------------- /apps/SimpleScreenRecorder/packages: -------------------------------------------------------------------------------- 1 | simplescreenrecorder 2 | -------------------------------------------------------------------------------- /apps/SimpleScreenRecorder/website: -------------------------------------------------------------------------------- 1 | https://www.maartenbaert.be/simplescreenrecorder/ 2 | -------------------------------------------------------------------------------- /apps/Snap Store/credits: -------------------------------------------------------------------------------- 1 | Installation script and made by RPICoder 2 | 3 | -------------------------------------------------------------------------------- /apps/Snap Store/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Snap Store/icon-24.png -------------------------------------------------------------------------------- /apps/Snap Store/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Snap Store/icon-64.png -------------------------------------------------------------------------------- /apps/Snap Store/website: -------------------------------------------------------------------------------- 1 | https://snapcraft.io/store 2 | -------------------------------------------------------------------------------- /apps/Snapdrop/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/Snapdrop/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Snapdrop/icon-24.png -------------------------------------------------------------------------------- /apps/Snapdrop/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Snapdrop/icon-64.png -------------------------------------------------------------------------------- /apps/Snapdrop/website: -------------------------------------------------------------------------------- 1 | https://github.com/RobinLinus/snapdrop 2 | -------------------------------------------------------------------------------- /apps/Sonic Pi/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Sonic Pi/icon-24.png -------------------------------------------------------------------------------- /apps/Sonic Pi/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Sonic Pi/icon-64.png -------------------------------------------------------------------------------- /apps/Sonic Pi/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Sonic Pi/website: -------------------------------------------------------------------------------- 1 | https://sonic-pi.net/#rp 2 | -------------------------------------------------------------------------------- /apps/Sound Recorder/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Sound Recorder/packages: -------------------------------------------------------------------------------- 1 | gnome-sound-recorder 2 | -------------------------------------------------------------------------------- /apps/Sound Recorder/website: -------------------------------------------------------------------------------- 1 | https://wiki.gnome.org/Apps/SoundRecorder 2 | -------------------------------------------------------------------------------- /apps/SpeedTest-CLI/website: -------------------------------------------------------------------------------- 1 | https://www.speedtest.net/ 2 | -------------------------------------------------------------------------------- /apps/Sphero SDK/credits: -------------------------------------------------------------------------------- 1 | Sphero SDK maintainers 2 | zShqdows (GitHub) 3 | ryanfortner (GitHub) for some improvements 4 | -------------------------------------------------------------------------------- /apps/Sphero SDK/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Sphero SDK/icon-24.png -------------------------------------------------------------------------------- /apps/Sphero SDK/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Sphero SDK/icon-64.png -------------------------------------------------------------------------------- /apps/Sphero SDK/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo rm -rf ~/sphero-sdk-raspberrypi-python 4 | -------------------------------------------------------------------------------- /apps/Sphero SDK/website: -------------------------------------------------------------------------------- 1 | https://sdk.sphero.com 2 | -------------------------------------------------------------------------------- /apps/StackEdit/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/StackEdit/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/StackEdit/icon-24.png -------------------------------------------------------------------------------- /apps/StackEdit/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/StackEdit/icon-64.png -------------------------------------------------------------------------------- /apps/StackEdit/website: -------------------------------------------------------------------------------- 1 | https://stackedit.io/ 2 | -------------------------------------------------------------------------------- /apps/Steam Link/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Steam Link/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Steam Link/icon-24.png -------------------------------------------------------------------------------- /apps/Steam Link/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Steam Link/icon-64.png -------------------------------------------------------------------------------- /apps/Steam Link/packages: -------------------------------------------------------------------------------- 1 | steamlink 2 | -------------------------------------------------------------------------------- /apps/Steam/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Steam/icon-24.png -------------------------------------------------------------------------------- /apps/Steam/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Steam/icon-64.png -------------------------------------------------------------------------------- /apps/StepMania/credits: -------------------------------------------------------------------------------- 1 | Stepmania contributors: https://github.com/stepmania/stepmania/graphs/contributors -------------------------------------------------------------------------------- /apps/StepMania/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/StepMania/icon-24.png -------------------------------------------------------------------------------- /apps/StepMania/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/StepMania/icon-64.png -------------------------------------------------------------------------------- /apps/StepMania/website: -------------------------------------------------------------------------------- 1 | https://www.stepmania.com/ 2 | -------------------------------------------------------------------------------- /apps/Stunt Rally/credits: -------------------------------------------------------------------------------- 1 | Compiled and packaged into a deb by Itai-Nelken and ryanfortner. 2 | Added to pi-apps by Itai-Nelken. 3 | -------------------------------------------------------------------------------- /apps/Stunt Rally/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Stunt Rally/icon-24.png -------------------------------------------------------------------------------- /apps/Stunt Rally/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Stunt Rally/icon-64.png -------------------------------------------------------------------------------- /apps/Stunt Rally/website: -------------------------------------------------------------------------------- 1 | http://stuntrally.tuxfamily.org/ 2 | -------------------------------------------------------------------------------- /apps/Sublime Merge/credits: -------------------------------------------------------------------------------- 1 | Added to pi-apps by theofficialgman 2 | -------------------------------------------------------------------------------- /apps/Sublime Merge/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | rm_external_repo "sublimehq" 5 | -------------------------------------------------------------------------------- /apps/Sublime Merge/website: -------------------------------------------------------------------------------- 1 | https://www.sublimemerge.com/ 2 | -------------------------------------------------------------------------------- /apps/Sublime Text/credits: -------------------------------------------------------------------------------- 1 | Added to pi-apps by Itai Nelken 2 | -------------------------------------------------------------------------------- /apps/Sublime Text/website: -------------------------------------------------------------------------------- 1 | https://www.sublimetext.com/ 2 | -------------------------------------------------------------------------------- /apps/Synaptic/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Synaptic/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Synaptic/icon-24.png -------------------------------------------------------------------------------- /apps/Synaptic/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Synaptic/icon-64.png -------------------------------------------------------------------------------- /apps/Synaptic/packages: -------------------------------------------------------------------------------- 1 | synaptic 2 | -------------------------------------------------------------------------------- /apps/Synaptic/website: -------------------------------------------------------------------------------- 1 | https://www.lifewire.com/guide-to-synaptic-package-manager-220570y 2 | -------------------------------------------------------------------------------- /apps/Syncthing/credits: -------------------------------------------------------------------------------- 1 | @theofficialgman on GitHub for the scripts 2 | -------------------------------------------------------------------------------- /apps/Syncthing/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Syncthing/icon-24.png -------------------------------------------------------------------------------- /apps/Syncthing/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Syncthing/icon-64.png -------------------------------------------------------------------------------- /apps/Syncthing/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 -------------------------------------------------------------------------------- /apps/Syncthing/website: -------------------------------------------------------------------------------- 1 | https://syncthing.net 2 | -------------------------------------------------------------------------------- /apps/SysMonTask/credits: -------------------------------------------------------------------------------- 1 | @KrispyCamel4u (GitHub) for the program 2 | @ryanfortner (GitHub) for the scripts 3 | -------------------------------------------------------------------------------- /apps/SysMonTask/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/SysMonTask/icon-24.png -------------------------------------------------------------------------------- /apps/SysMonTask/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/SysMonTask/icon-64.png -------------------------------------------------------------------------------- /apps/SysMonTask/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/SysMonTask/website: -------------------------------------------------------------------------------- 1 | https://github.com/KrispyCamel4u/SysMonTask 2 | -------------------------------------------------------------------------------- /apps/System Monitoring Center/credits: -------------------------------------------------------------------------------- 1 | @hakandundar34coding (GitHub) 2 | @ryanfortner (GitHub) 3 | -------------------------------------------------------------------------------- /apps/System Monitoring Center/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/System Monitoring Center/website: -------------------------------------------------------------------------------- 1 | https://github.com/hakandundar34coding/system-monitoring-center 2 | -------------------------------------------------------------------------------- /apps/Systemd Pilot/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Systemd Pilot/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Allow packages required by this app to be uninstalled 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/Systemd Pilot/website: -------------------------------------------------------------------------------- 1 | https://github.com/mfat/systemd-pilot 2 | -------------------------------------------------------------------------------- /apps/Tabby/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Tabby/icon-24.png -------------------------------------------------------------------------------- /apps/Tabby/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Tabby/icon-64.png -------------------------------------------------------------------------------- /apps/Tabby/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Tabby/website: -------------------------------------------------------------------------------- 1 | https://tabby.sh/ 2 | -------------------------------------------------------------------------------- /apps/TeamViewer/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/TeamViewer/icon-24.png -------------------------------------------------------------------------------- /apps/TeamViewer/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/TeamViewer/icon-64.png -------------------------------------------------------------------------------- /apps/TeamViewer/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/TeamViewer/website: -------------------------------------------------------------------------------- 1 | https://github.com/Benmac83/Teamviewer-installer-for-pi 2 | -------------------------------------------------------------------------------- /apps/Telegram/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Telegram/icon-24.png -------------------------------------------------------------------------------- /apps/Telegram/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Telegram/icon-64.png -------------------------------------------------------------------------------- /apps/Telegram/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flatpak_uninstall org.telegram.desktop || exit 1 4 | 5 | purge_packages || exit 1 6 | -------------------------------------------------------------------------------- /apps/Telegram/website: -------------------------------------------------------------------------------- 1 | https://github.com/telegramdesktop/tdesktop 2 | -------------------------------------------------------------------------------- /apps/Tetris CLI/credits: -------------------------------------------------------------------------------- 1 | DEB packages hosted by ryanfortner 2 | -------------------------------------------------------------------------------- /apps/Tetris CLI/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Tetris CLI/icon-24.png -------------------------------------------------------------------------------- /apps/Tetris CLI/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Tetris CLI/icon-64.png -------------------------------------------------------------------------------- /apps/Tetris CLI/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Tetris CLI/website: -------------------------------------------------------------------------------- 1 | https://github.com/k-vernooy/tetris 2 | -------------------------------------------------------------------------------- /apps/Thonny/credits: -------------------------------------------------------------------------------- 1 | Added to pi apps by justaPancakeGuy 2 | -------------------------------------------------------------------------------- /apps/Thonny/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Thonny/icon-24.png -------------------------------------------------------------------------------- /apps/Thonny/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Thonny/icon-64.png -------------------------------------------------------------------------------- /apps/Thonny/packages: -------------------------------------------------------------------------------- 1 | thonny 2 | -------------------------------------------------------------------------------- /apps/Thonny/website: -------------------------------------------------------------------------------- 1 | https://thonny.org 2 | -------------------------------------------------------------------------------- /apps/Thunderbird/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Thunderbird/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Thunderbird/icon-24.png -------------------------------------------------------------------------------- /apps/Thunderbird/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Thunderbird/icon-64.png -------------------------------------------------------------------------------- /apps/Thunderbird/packages: -------------------------------------------------------------------------------- 1 | thunderbird 2 | -------------------------------------------------------------------------------- /apps/Thunderbird/website: -------------------------------------------------------------------------------- 1 | https://www.thunderbird.net/features 2 | -------------------------------------------------------------------------------- /apps/TiLP/credits: -------------------------------------------------------------------------------- 1 | @ryanfortner (GitHub) 2 | -------------------------------------------------------------------------------- /apps/TiLP/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/TiLP/icon-24.png -------------------------------------------------------------------------------- /apps/TiLP/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/TiLP/icon-64.png -------------------------------------------------------------------------------- /apps/TiLP/packages: -------------------------------------------------------------------------------- 1 | tilp2 2 | -------------------------------------------------------------------------------- /apps/TiLP/website: -------------------------------------------------------------------------------- 1 | https://github.com/debrouxl/tilp_and_gfm 2 | -------------------------------------------------------------------------------- /apps/Timeshift/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Timeshift/icon-24.png -------------------------------------------------------------------------------- /apps/Timeshift/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Timeshift/icon-64.png -------------------------------------------------------------------------------- /apps/Timeshift/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Timeshift/website: -------------------------------------------------------------------------------- 1 | https://github.com/linuxmint/timeshift 2 | -------------------------------------------------------------------------------- /apps/Tor/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Tor/icon-24.png -------------------------------------------------------------------------------- /apps/Tor/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Tor/icon-64.png -------------------------------------------------------------------------------- /apps/Tor/website: -------------------------------------------------------------------------------- 1 | https://sourceforge.net/projects/tor-browser-ports/files/ 2 | -------------------------------------------------------------------------------- /apps/Transmission/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Transmission/packages: -------------------------------------------------------------------------------- 1 | transmission-gtk 2 | -------------------------------------------------------------------------------- /apps/Transmission/website: -------------------------------------------------------------------------------- 1 | https://transmissionbt.com 2 | -------------------------------------------------------------------------------- /apps/Turbowarp/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Turbowarp/icon-24.png -------------------------------------------------------------------------------- /apps/Turbowarp/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Turbowarp/icon-64.png -------------------------------------------------------------------------------- /apps/Turbowarp/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Turbowarp/website: -------------------------------------------------------------------------------- 1 | https://turbowarp.org/ 2 | -------------------------------------------------------------------------------- /apps/USBImager/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/USBImager/icon-24.png -------------------------------------------------------------------------------- /apps/USBImager/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/USBImager/icon-64.png -------------------------------------------------------------------------------- /apps/USBImager/website: -------------------------------------------------------------------------------- 1 | https://bztsrc.gitlab.io/usbimager/ 2 | -------------------------------------------------------------------------------- /apps/Ulauncher/credits: -------------------------------------------------------------------------------- 1 | RPiCoder on Discord recommended this. 2 | Botspot made the scripts. 3 | -------------------------------------------------------------------------------- /apps/Ulauncher/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ulauncher/icon-24.png -------------------------------------------------------------------------------- /apps/Ulauncher/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Ulauncher/icon-64.png -------------------------------------------------------------------------------- /apps/Ulauncher/website: -------------------------------------------------------------------------------- 1 | https://ulauncher.io/ 2 | -------------------------------------------------------------------------------- /apps/Unciv/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Unciv/icon-24.png -------------------------------------------------------------------------------- /apps/Unciv/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Unciv/icon-64.png -------------------------------------------------------------------------------- /apps/Unciv/website: -------------------------------------------------------------------------------- 1 | https://github.com/yairm210/Unciv 2 | -------------------------------------------------------------------------------- /apps/Update Buddy/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/update-buddy 2 | -------------------------------------------------------------------------------- /apps/VARA HF/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/VARA HF/icon-24.png -------------------------------------------------------------------------------- /apps/VARA HF/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/VARA HF/icon-64.png -------------------------------------------------------------------------------- /apps/VARA HF/website: -------------------------------------------------------------------------------- 1 | https://rosmodem.wordpress.com/ 2 | -------------------------------------------------------------------------------- /apps/VMware Horizon Client/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/VMware Horizon Client/website: -------------------------------------------------------------------------------- 1 | https://www.vmware.com/products/horizon 2 | -------------------------------------------------------------------------------- /apps/VSCodium/credits: -------------------------------------------------------------------------------- 1 | Added to pi-apps by @ryanfortner (Github) 2 | -------------------------------------------------------------------------------- /apps/VSCodium/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/VSCodium/icon-24.png -------------------------------------------------------------------------------- /apps/VSCodium/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/VSCodium/icon-64.png -------------------------------------------------------------------------------- /apps/VSCodium/website: -------------------------------------------------------------------------------- 1 | https://vscodium.com/ 2 | -------------------------------------------------------------------------------- /apps/VeraCrypt/credits: -------------------------------------------------------------------------------- 1 | nielsbaloe on Github suggested this be added. 2 | Botspot added it. 3 | -------------------------------------------------------------------------------- /apps/VeraCrypt/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/VeraCrypt/icon-24.png -------------------------------------------------------------------------------- /apps/VeraCrypt/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/VeraCrypt/icon-64.png -------------------------------------------------------------------------------- /apps/VeraCrypt/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/VeraCrypt/website: -------------------------------------------------------------------------------- 1 | https://www.veracrypt.fr/en/Documentation.html 2 | -------------------------------------------------------------------------------- /apps/Visual Studio Code/install-32: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages https://aka.ms/linux-armhf-deb || exit 1 4 | -------------------------------------------------------------------------------- /apps/Visual Studio Code/install-64: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | install_packages https://aka.ms/linux-arm64-deb || exit 1 4 | -------------------------------------------------------------------------------- /apps/Visual Studio Code/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | purge_packages || exit 1 3 | -------------------------------------------------------------------------------- /apps/Visual Studio Code/website: -------------------------------------------------------------------------------- 1 | https://code.visualstudio.com/ 2 | -------------------------------------------------------------------------------- /apps/Vivaldi/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Vivaldi/icon-24.png -------------------------------------------------------------------------------- /apps/Vivaldi/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Vivaldi/icon-64.png -------------------------------------------------------------------------------- /apps/Vivaldi/website: -------------------------------------------------------------------------------- 1 | https://vivaldi.com 2 | -------------------------------------------------------------------------------- /apps/WACUP (new WinAmp)/credits: -------------------------------------------------------------------------------- 1 | Botspot for the scripts 2 | ralf1307 (github) issue #192 for the suggestion. 3 | -------------------------------------------------------------------------------- /apps/WACUP (new WinAmp)/description: -------------------------------------------------------------------------------- 1 | Cross-platform audio player - emulated Windows app 2 | -------------------------------------------------------------------------------- /apps/WACUP (new WinAmp)/website: -------------------------------------------------------------------------------- 1 | https://getwacup.com/ 2 | -------------------------------------------------------------------------------- /apps/WPS Office/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/WPS Office/icon-24.png -------------------------------------------------------------------------------- /apps/WPS Office/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/WPS Office/icon-64.png -------------------------------------------------------------------------------- /apps/WPS Office/website: -------------------------------------------------------------------------------- 1 | https://www.wps.com 2 | -------------------------------------------------------------------------------- /apps/Waveform/credits: -------------------------------------------------------------------------------- 1 | Thanks to @Crilum on GitHub for adding this app to Pi-Apps! 2 | -------------------------------------------------------------------------------- /apps/Waveform/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Waveform/icon-24.png -------------------------------------------------------------------------------- /apps/Waveform/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Waveform/icon-64.png -------------------------------------------------------------------------------- /apps/Waveform/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Allow packages required by this app to be uninstalled 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/Waveform/website: -------------------------------------------------------------------------------- 1 | https://tracktion.com/products/waveform-free 2 | -------------------------------------------------------------------------------- /apps/Web Apps/credits: -------------------------------------------------------------------------------- 1 | linuxmint for maintaining the application 2 | theofficialgman for packaging it for pi-apps 3 | -------------------------------------------------------------------------------- /apps/Web Apps/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Web Apps/icon-24.png -------------------------------------------------------------------------------- /apps/Web Apps/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Web Apps/icon-64.png -------------------------------------------------------------------------------- /apps/Web Apps/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/Web Apps/website: -------------------------------------------------------------------------------- 1 | https://itsfoss.com/web-app-manager-linux-mint/ 2 | -------------------------------------------------------------------------------- /apps/Webcord/credits: -------------------------------------------------------------------------------- 1 | Discord app by SpacingBat3 2 | -------------------------------------------------------------------------------- /apps/Webcord/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Webcord/icon-24.png -------------------------------------------------------------------------------- /apps/Webcord/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Webcord/icon-64.png -------------------------------------------------------------------------------- /apps/Webcord/website: -------------------------------------------------------------------------------- 1 | https://github.com/SpacingBat3/WebCord/ 2 | -------------------------------------------------------------------------------- /apps/Wechat/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Wechat/icon-24.png -------------------------------------------------------------------------------- /apps/Wechat/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Wechat/icon-64.png -------------------------------------------------------------------------------- /apps/Wechat/website: -------------------------------------------------------------------------------- 1 | https://www.wechat.com/en/ 2 | -------------------------------------------------------------------------------- /apps/WhatsApp/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/WhatsApp/description: -------------------------------------------------------------------------------- 1 | Whatsapp Web webapp 2 | 3 | A simple Whatsapp Web chromium webapp. 4 | 5 | To run: Menu -> Internet -> WhatsApp 6 | -------------------------------------------------------------------------------- /apps/WhatsApp/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/WhatsApp/icon-24.png -------------------------------------------------------------------------------- /apps/WhatsApp/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/WhatsApp/icon-64.png -------------------------------------------------------------------------------- /apps/WhatsApp/website: -------------------------------------------------------------------------------- 1 | no website 2 | -------------------------------------------------------------------------------- /apps/Windows Flasher/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Windows Flasher/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/wor-flasher 2 | -------------------------------------------------------------------------------- /apps/Windows Screensavers/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Windows Screensavers/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/Screensavers 2 | -------------------------------------------------------------------------------- /apps/Wine (x64)/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Wine (x64)/icon-24.png -------------------------------------------------------------------------------- /apps/Wine (x64)/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Wine (x64)/icon-64.png -------------------------------------------------------------------------------- /apps/Wine (x64)/website: -------------------------------------------------------------------------------- 1 | https://www.winehq.org/ 2 | -------------------------------------------------------------------------------- /apps/Wine (x86)/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Wine (x86)/icon-24.png -------------------------------------------------------------------------------- /apps/Wine (x86)/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Wine (x86)/icon-64.png -------------------------------------------------------------------------------- /apps/Wine (x86)/website: -------------------------------------------------------------------------------- 1 | https://www.winehq.org/ 2 | -------------------------------------------------------------------------------- /apps/WorldPainter/website: -------------------------------------------------------------------------------- 1 | https://www.worldpainter.net/ 2 | -------------------------------------------------------------------------------- /apps/XMRig/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/XMRig/icon-24.png -------------------------------------------------------------------------------- /apps/XMRig/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/XMRig/icon-64.png -------------------------------------------------------------------------------- /apps/XMRig/website: -------------------------------------------------------------------------------- 1 | https://github.com/xmrig/xmrig 2 | -------------------------------------------------------------------------------- /apps/XSnow/credits: -------------------------------------------------------------------------------- 1 | Thanks to Willem Vermin for developing this project. 2 | -------------------------------------------------------------------------------- /apps/XSnow/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/XSnow/icon-24.png -------------------------------------------------------------------------------- /apps/XSnow/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/XSnow/icon-64.png -------------------------------------------------------------------------------- /apps/XSnow/website: -------------------------------------------------------------------------------- 1 | https://www.ratrabbit.nl/ratrabbit/xsnow/ 2 | -------------------------------------------------------------------------------- /apps/Xfburn/credits: -------------------------------------------------------------------------------- 1 | @Rak1ta (GitHub) -------------------------------------------------------------------------------- /apps/Xfburn/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Xfburn/icon-24.png -------------------------------------------------------------------------------- /apps/Xfburn/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Xfburn/icon-64.png -------------------------------------------------------------------------------- /apps/Xfburn/packages: -------------------------------------------------------------------------------- 1 | xfburn -------------------------------------------------------------------------------- /apps/Xfburn/website: -------------------------------------------------------------------------------- 1 | https://docs.xfce.org/apps/xfburn/start -------------------------------------------------------------------------------- /apps/Xtreme Download Manager/website: -------------------------------------------------------------------------------- 1 | https://xtremedownloadmanager.com 2 | -------------------------------------------------------------------------------- /apps/YouTubuddy/credits: -------------------------------------------------------------------------------- 1 | Botspot added this to Pi-Apps. 2 | -------------------------------------------------------------------------------- /apps/YouTubuddy/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/YouTubuddy/icon-24.png -------------------------------------------------------------------------------- /apps/YouTubuddy/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/YouTubuddy/icon-64.png -------------------------------------------------------------------------------- /apps/YouTubuddy/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf ~/youtubuddy ~/.local/share/applications/youtubuddy.desktop 3 | purge_packages || exit 1 4 | -------------------------------------------------------------------------------- /apps/YouTubuddy/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/youtubuddy 2 | -------------------------------------------------------------------------------- /apps/Zen/credits: -------------------------------------------------------------------------------- 1 | Botspot 2 | -------------------------------------------------------------------------------- /apps/Zen/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Zen/icon-24.png -------------------------------------------------------------------------------- /apps/Zen/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Zen/icon-64.png -------------------------------------------------------------------------------- /apps/Zen/website: -------------------------------------------------------------------------------- 1 | https://zen-browser.app/ 2 | -------------------------------------------------------------------------------- /apps/Zoom PWA/credits: -------------------------------------------------------------------------------- 1 | theofficialgman 2 | -------------------------------------------------------------------------------- /apps/Zoom PWA/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Zoom PWA/icon-24.png -------------------------------------------------------------------------------- /apps/Zoom PWA/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Zoom PWA/icon-64.png -------------------------------------------------------------------------------- /apps/Zoom/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Zoom/icon-24.png -------------------------------------------------------------------------------- /apps/Zoom/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/Zoom/icon-64.png -------------------------------------------------------------------------------- /apps/Zoom/website: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/pi-apps/issues/188 2 | -------------------------------------------------------------------------------- /apps/btop++/credits: -------------------------------------------------------------------------------- 1 | Thanks to: 2 | - aristocratos and all contributers. 3 | - Crilum on GitHub for writing the scripts. 4 | -------------------------------------------------------------------------------- /apps/btop++/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/btop++/icon-24.png -------------------------------------------------------------------------------- /apps/btop++/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/btop++/icon-64.png -------------------------------------------------------------------------------- /apps/btop++/website: -------------------------------------------------------------------------------- 1 | https://github.com/aristocratos/btop 2 | -------------------------------------------------------------------------------- /apps/ckb-next/credits: -------------------------------------------------------------------------------- 1 | @ryanfortner (GitHub) 2 | -------------------------------------------------------------------------------- /apps/ckb-next/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/ckb-next/icon-24.png -------------------------------------------------------------------------------- /apps/ckb-next/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/ckb-next/icon-64.png -------------------------------------------------------------------------------- /apps/ckb-next/packages: -------------------------------------------------------------------------------- 1 | ckb-next 2 | -------------------------------------------------------------------------------- /apps/ckb-next/website: -------------------------------------------------------------------------------- 1 | https://github.com/ckb-next/ckb-next 2 | -------------------------------------------------------------------------------- /apps/jGRASP IDE/credits: -------------------------------------------------------------------------------- 1 | Botspot created and theofficialgman edited and updated. 2 | -------------------------------------------------------------------------------- /apps/jGRASP IDE/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/jGRASP IDE/icon-24.png -------------------------------------------------------------------------------- /apps/jGRASP IDE/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/jGRASP IDE/icon-64.png -------------------------------------------------------------------------------- /apps/jGRASP IDE/website: -------------------------------------------------------------------------------- 1 | https://www.jgrasp.org/index.html 2 | -------------------------------------------------------------------------------- /apps/template/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Allow packages required by this app to be uninstalled 4 | purge_packages || exit 1 5 | -------------------------------------------------------------------------------- /apps/template/website: -------------------------------------------------------------------------------- 1 | https://example.com 2 | -------------------------------------------------------------------------------- /apps/tldr/credits: -------------------------------------------------------------------------------- 1 | the main developer - dbrgn (Danilo Bargen) 2 | -------------------------------------------------------------------------------- /apps/tldr/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/tldr/icon-24.png -------------------------------------------------------------------------------- /apps/tldr/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/apps/tldr/icon-64.png -------------------------------------------------------------------------------- /apps/tldr/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | tldr --clear-cache &>/dev/null 3 | sudo rm -f /usr/bin/tldr &>/dev/null 4 | -------------------------------------------------------------------------------- /apps/tldr/website: -------------------------------------------------------------------------------- 1 | https://dbrgn.github.io/tealdeer 2 | -------------------------------------------------------------------------------- /etc/git_url: -------------------------------------------------------------------------------- 1 | https://github.com/Botspot/pi-apps 2 | -------------------------------------------------------------------------------- /icons/back-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/back-64.png -------------------------------------------------------------------------------- /icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/back.png -------------------------------------------------------------------------------- /icons/background-3d-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/background-3d-dark.png -------------------------------------------------------------------------------- /icons/background-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/background-3d.png -------------------------------------------------------------------------------- /icons/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/backup.png -------------------------------------------------------------------------------- /icons/badge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/badge-light.png -------------------------------------------------------------------------------- /icons/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/badge.png -------------------------------------------------------------------------------- /icons/botspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/botspot.png -------------------------------------------------------------------------------- /icons/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories.png -------------------------------------------------------------------------------- /icons/categories/Crypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories/Crypto.png -------------------------------------------------------------------------------- /icons/categories/Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories/Games.png -------------------------------------------------------------------------------- /icons/categories/Office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories/Office.png -------------------------------------------------------------------------------- /icons/categories/Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories/Tools.png -------------------------------------------------------------------------------- /icons/categories/Updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories/Updates.png -------------------------------------------------------------------------------- /icons/categories/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/categories/default.png -------------------------------------------------------------------------------- /icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/check.png -------------------------------------------------------------------------------- /icons/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/create.png -------------------------------------------------------------------------------- /icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/down.png -------------------------------------------------------------------------------- /icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/download.png -------------------------------------------------------------------------------- /icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/edit.png -------------------------------------------------------------------------------- /icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/error.png -------------------------------------------------------------------------------- /icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/exit.png -------------------------------------------------------------------------------- /icons/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/failure.png -------------------------------------------------------------------------------- /icons/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/forward.png -------------------------------------------------------------------------------- /icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/image.png -------------------------------------------------------------------------------- /icons/in-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/in-progress.png -------------------------------------------------------------------------------- /icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/info.png -------------------------------------------------------------------------------- /icons/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/install.png -------------------------------------------------------------------------------- /icons/interrupted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/interrupted.png -------------------------------------------------------------------------------- /icons/log-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/log-file.png -------------------------------------------------------------------------------- /icons/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo-128.png -------------------------------------------------------------------------------- /icons/logo-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo-144.png -------------------------------------------------------------------------------- /icons/logo-3d-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo-3d-dark.png -------------------------------------------------------------------------------- /icons/logo-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo-3d.png -------------------------------------------------------------------------------- /icons/logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo-64.png -------------------------------------------------------------------------------- /icons/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo-text.png -------------------------------------------------------------------------------- /icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/logo.png -------------------------------------------------------------------------------- /icons/multi-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/multi-select.png -------------------------------------------------------------------------------- /icons/none-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/none-1.png -------------------------------------------------------------------------------- /icons/none-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/none-24.png -------------------------------------------------------------------------------- /icons/none-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/none-64.png -------------------------------------------------------------------------------- /icons/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/options.png -------------------------------------------------------------------------------- /icons/proglogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/proglogo.png -------------------------------------------------------------------------------- /icons/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/prompt.png -------------------------------------------------------------------------------- /icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/refresh.png -------------------------------------------------------------------------------- /icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/save.png -------------------------------------------------------------------------------- /icons/screenshots/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/screenshots/manage.png -------------------------------------------------------------------------------- /icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/search.png -------------------------------------------------------------------------------- /icons/send-error-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/send-error-report.png -------------------------------------------------------------------------------- /icons/settings-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/settings-dark.png -------------------------------------------------------------------------------- /icons/settings-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/settings-light.png -------------------------------------------------------------------------------- /icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/settings.png -------------------------------------------------------------------------------- /icons/shellscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/shellscript.png -------------------------------------------------------------------------------- /icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/success.png -------------------------------------------------------------------------------- /icons/theofficialgman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/theofficialgman.png -------------------------------------------------------------------------------- /icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/trash.png -------------------------------------------------------------------------------- /icons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/txt.png -------------------------------------------------------------------------------- /icons/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/uninstall.png -------------------------------------------------------------------------------- /icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/up.png -------------------------------------------------------------------------------- /icons/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/update.png -------------------------------------------------------------------------------- /icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/upload.png -------------------------------------------------------------------------------- /icons/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botspot/pi-apps/90b046544f790bfefbbe4793800c03c88ce0b690/icons/wait.png --------------------------------------------------------------------------------