Skip to content

Commit 394c340

Browse files
committed
merge theme
Conflicts: Dockerfile startup.sh
1 parent 3e65c4b commit 394c340

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ FROM ubuntu:14.04.3
22
MAINTAINER Doro Wu <fcwu.tw@gmail.com>
33

44
ENV DEBIAN_FRONTEND noninteractive
5-
ENV HOME /root
5+
ENV HOME /home/ubuntu
66

77
# built-in packages
88
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 - \
1012
&& add-apt-repository ppa:fcwu-tw/ppa \
1113
&& apt-get update \
1214
&& apt-get install -y --force-yes --no-install-recommends \
@@ -21,6 +23,7 @@ RUN apt-get update \
2123
nginx \
2224
python-pip python-dev build-essential \
2325
mesa-utils libgl1-mesa-dri \
26+
gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine pinta arc-theme \
2427
&& apt-get autoclean \
2528
&& apt-get autoremove \
2629
&& rm -rf /var/lib/apt/lists/*
@@ -38,6 +41,7 @@ ADD nginx.conf /etc/nginx/sites-enabled/default
3841
ADD startup.sh /
3942
ADD supervisord.conf /etc/supervisor/conf.d/
4043
ADD doro-lxde-wallpapers /usr/share/doro-lxde-wallpapers/
44+
ADD gtkrc-2.0 /home/ubuntu/.gtkrc-2.0
4145

4246
EXPOSE 6080
4347
WORKDIR /root

gtkrc-2.0

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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"

supervisord.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ redirect_stderr=true
1313
priority=15
1414
directory=/home/ubuntu
1515
command=/usr/bin/lxsession
16-
user=ubuntu
16+
user=root
1717
autostart=true
1818
autorestart=true
1919
stopsignal=QUIT

0 commit comments

Comments
 (0)