File tree Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,13 @@ FROM ubuntu:14.04.3
2
2
MAINTAINER Doro Wu <fcwu.tw@gmail.com>
3
3
4
4
ENV DEBIAN_FRONTEND noninteractive
5
- ENV HOME /root
5
+ ENV HOME /home/ubuntu
6
6
7
7
# built-in packages
8
8
RUN apt-get update \
9
- && apt-get install -y --force-yes --no-install-recommends software-properties-common \
9
+ && apt-get install -y --force-yes --no-install-recommends software-properties-common curl \
10
+ && sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/ /' >> /etc/apt/sources.list.d/arc-theme.list" \
11
+ && curl -SL http://download.opensuse.org/repositories/home:Horst3180/xUbuntu_16.04/Release.key | sudo apt-key add - \
10
12
&& add-apt-repository ppa:fcwu-tw/ppa \
11
13
&& apt-get update \
12
14
&& apt-get install -y --force-yes --no-install-recommends \
@@ -21,6 +23,7 @@ RUN apt-get update \
21
23
nginx \
22
24
python-pip python-dev build-essential \
23
25
mesa-utils libgl1-mesa-dri \
26
+ gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine pinta arc-theme \
24
27
&& apt-get autoclean \
25
28
&& apt-get autoremove \
26
29
&& rm -rf /var/lib/apt/lists/*
@@ -38,6 +41,7 @@ ADD nginx.conf /etc/nginx/sites-enabled/default
38
41
ADD startup.sh /
39
42
ADD supervisord.conf /etc/supervisor/conf.d/
40
43
ADD doro-lxde-wallpapers /usr/share/doro-lxde-wallpapers/
44
+ ADD gtkrc-2.0 /home/ubuntu/.gtkrc-2.0
41
45
42
46
EXPOSE 6080
43
47
WORKDIR /root
Original file line number Diff line number Diff line change
1
+ # DO NOT EDIT! This file will be overwritten by LXAppearance.
2
+ # Any customization should be done in ~/.gtkrc-2.0.mine instead.
3
+ include "/usr/share/themes/Arc/gtk-2.0/gtkrc"
4
+
5
+ gtk-theme-name="Arc"
6
+ gtk-icon-theme-name="nuoveXT2"
7
+ gtk-font-name="Sans 10"
8
+ gtk-cursor-theme-name="DMZ-White"
9
+ gtk-cursor-theme-size=18
10
+ gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
11
+ gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
12
+ gtk-button-images=1
13
+ gtk-menu-images=1
14
+ gtk-enable-event-sounds=1
15
+ gtk-enable-input-feedback-sounds=1
16
+ gtk-xft-antialias=1
17
+ gtk-xft-hinting=1
18
+ gtk-xft-hintstyle="hintslight"
19
+ gtk-xft-rgba="rgb"
20
+ include "/home/ubuntu/.gtkrc-2.0.mine"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ redirect_stderr=true
13
13
priority=15
14
14
directory=/home/ubuntu
15
15
command=/usr/bin/lxsession
16
- user=ubuntu
16
+ user=root
17
17
autostart=true
18
18
autorestart=true
19
19
stopsignal=QUIT
You can’t perform that action at this time.
0 commit comments