diff --git a/apps/Remarkable/credits b/apps/Remarkable/credits new file mode 100644 index 0000000..f988c17 --- /dev/null +++ b/apps/Remarkable/credits @@ -0,0 +1 @@ +Added to Pi-Apps by Itai-Nelken. diff --git a/apps/Remarkable/description b/apps/Remarkable/description new file mode 100644 index 0000000..8895a84 --- /dev/null +++ b/apps/Remarkable/description @@ -0,0 +1,10 @@ +A fully featured Markdown editor for Linux. +Remarkable has many features including: +- Live Preview with Synchronized Scrolling +- Syntax Highlighting +- GitHub Flavored Markdown Support +- HTML and PDF Export +- Dialogs for adding images, links and tables +- Styles +- Custom CSS Support +- Keyboard Shortcuts diff --git a/apps/Remarkable/icon-24.png b/apps/Remarkable/icon-24.png new file mode 100644 index 0000000..95edf0b Binary files /dev/null and b/apps/Remarkable/icon-24.png differ diff --git a/apps/Remarkable/icon-64.png b/apps/Remarkable/icon-64.png new file mode 100644 index 0000000..0cdcf46 Binary files /dev/null and b/apps/Remarkable/icon-64.png differ diff --git a/apps/Remarkable/install b/apps/Remarkable/install new file mode 100755 index 0000000..38300ce --- /dev/null +++ b/apps/Remarkable/install @@ -0,0 +1,13 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +wget https://remarkableapp.github.io/files/remarkable_1.87_all.deb || error 'Failed to Download!' + +sudo apt --fix-broken -y install ./remarkable_1.87_all.deb || error 'Failed to install!' +rm remarkable_1.87_all.deb diff --git a/apps/Remarkable/uninstall b/apps/Remarkable/uninstall new file mode 100755 index 0000000..5b99c96 --- /dev/null +++ b/apps/Remarkable/uninstall @@ -0,0 +1,11 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +sudo apt purge remarkable -y || error "Failed to purge remarkable package!" +sudo apt autoremove -y diff --git a/apps/Remarkable/website b/apps/Remarkable/website new file mode 100644 index 0000000..f4ea220 --- /dev/null +++ b/apps/Remarkable/website @@ -0,0 +1 @@ +https://remarkableapp.github.io/index.html