From c3a893e92067d70524d386920e0c255a99f381c6 Mon Sep 17 00:00:00 2001 From: Phantop Date: Wed, 16 Feb 2022 12:32:03 -0500 Subject: [PATCH] Add gitignore and chromium --- .gitignore | 3 +++ apps/mkchrome | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100755 apps/mkchrome diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..74ae513 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +squashfs-root +*.sh +*.AppImage diff --git a/apps/mkchrome b/apps/mkchrome new file mode 100755 index 0000000..d6240a8 --- /dev/null +++ b/apps/mkchrome @@ -0,0 +1,13 @@ +#!/bin/bash +PATH=$(dirname "$(readlink -f "${0}")")/..:$PATH +DIR=/tmp/dwarf-portable-executable +mkdir -p $DIR +LINK=https://download-chromium.appspot.com/dl/Linux_x64 +curl -L "$LINK" | bsdtar xf - -C$DIR + +chmod +x $DIR/chrome-linux/chrome* +mv $DIR/chrome-linux/chrome $DIR/chrome-linux/AppRun + +appdwarf $DIR/chrome-linux +mv $DIR/chrome-linux.sh chromium +rm -rf $DIR/chrome-linux