-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 40bdada
Showing
4 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
FROM resin/rpi-node:0.10-wheezy | ||
|
||
RUN apt-get update \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y \ | ||
chromium-browser \ | ||
fbset \ | ||
htop \ | ||
libnss3 \ | ||
libraspberrypi-bin \ | ||
matchbox \ | ||
psmisc \ | ||
sqlite3 \ | ||
ttf-mscorefonts-installer \ | ||
x11-xserver-utils \ | ||
xinit \ | ||
xwit | ||
|
||
RUN mkdir -p /usr/src/app \ | ||
&& ln -s /usr/src/app /app | ||
|
||
WORKDIR /usr/src/app | ||
|
||
COPY . /usr/src/app | ||
|
||
RUN echo "allowed_users=anybody" > /etc/X11/Xwrapper.config | ||
|
||
CMD bash -C "/app/spawn_screen";"bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# RPiBrowser-resin.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
#Libraries need a ldconfig | ||
|
||
ldconfig | ||
|
||
echo $URL > /usr/src/app/url.txt | ||
|
||
useradd -m pi | ||
|
||
gpasswd -a pi video | ||
|
||
cp /app/xinitrc /home/pi/.xinitrc; | ||
chown pi: /home/pi/.xinitrc | ||
|
||
su - pi -c startx & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
while true; do | ||
|
||
# Clean up previously running apps, gracefully at first then harshly | ||
killall -TERM chromium 2>/dev/null; | ||
killall -TERM matchbox-window-manager 2>/dev/null; | ||
sleep 2; | ||
killall -9 chromium 2>/dev/null; | ||
killall -9 matchbox-window-manager 2>/dev/null; | ||
|
||
# Clean out existing profile information | ||
rm -rf /home/pi/.cache; | ||
rm -rf /home/pi/.config; | ||
rm -rf /home/pi/.pki; | ||
|
||
# Generate the bare minimum to keep Chromium happy! | ||
mkdir -p /home/pi/.config/chromium/Default | ||
sqlite3 /home/pi/.config/chromium/Default/Web\ Data "CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR); INSERT INTO meta VALUES('version','46'); CREATE TABLE keywords (foo INTEGER);"; | ||
|
||
# Disable DPMS / Screen blanking | ||
xset -dpms | ||
xset s off | ||
|
||
# Reset the framebuffer's colour-depth | ||
fbset -depth $( cat /sys/module/*fb*/parameters/fbdepth ); | ||
|
||
# Hide the cursor (move it to the bottom-right, comment out if you want mouse interaction) | ||
xwit -root -warp $( cat /sys/module/*fb*/parameters/fbwidth ) $( cat /sys/module/*fb*/parameters/fbheight ) | ||
|
||
# Start the window manager (remove "-use_cursor no" if you actually want mouse interaction) | ||
matchbox-window-manager -use_titlebar no -use_cursor no & | ||
|
||
# Start the browser (See http://peter.sh/experiments/chromium-command-line-switches/) | ||
chromium --app=$( cat /usr/src/app/url.txt ) | ||
|
||
done; |