summaryrefslogtreecommitdiff
path: root/docker/debian/bitmask-on-docker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/debian/bitmask-on-docker.sh')
-rwxr-xr-xdocker/debian/bitmask-on-docker.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/docker/debian/bitmask-on-docker.sh b/docker/debian/bitmask-on-docker.sh
deleted file mode 100755
index c3e42b22..00000000
--- a/docker/debian/bitmask-on-docker.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-# Helper script to install, run and do a screenshot of bitmask
-
-# You can use this as follows:
-# $ docker run -t -i --rm -v `pwd`:/host/ ubuntu:14.04 /bin/bash
-# $ cd /host/
-# $ ./bitmask-on-docker.sh stable
-
-[[ -z $1 ]] && exit 1
-
-./apt-bitmask.sh $1 # this does an `apt-get update`
-apt-get -y install xinit xvfb imagemagick lxpolkit
-
-startx -- `which Xvfb` :1 -screen 0 1024x768x24 &
-sleep 1
-
-DISPLAY=:1 lxpolkit &
-sleep 0.5 # bitmask needs polkit to work
-
-DISPLAY=:1 bitmask &
-sleep 2 # wait for bitmask to start
-
-DISPLAY=:1 import -window root bitmask.png